Commit Diff


commit - d046e4d6b500583cda8d2561e47c790eaedd007f
commit + 260becda9c69d5c76ae8a0bdbc6f98781b615534
blob - 5eefb346be18ba41f47ca41a2cebeb21cf7dfba9
blob + b38a7290c907f1f1e4b4ee16749d2693b96be851
--- regress/lib.sh
+++ regress/lib.sh
@@ -78,19 +78,19 @@ setup_simple_test() {
 # usage: get <path>
 # return the body of the request on stdout
 get() {
-	$gg -T30 -b $ggflags "gemini://localhost:10965/$1"
+	$gg -T10 -b $ggflags "gemini://localhost:10965/$1"
 }
 
 # usage: head <path>
 # return the meta response line on stdout
 head() {
-	$gg -T30 -h $ggflags "gemini://localhost:10965/$1"
+	$gg -T10 -h $ggflags "gemini://localhost:10965/$1"
 }
 
 # usage: raw <path>
 # return both header and body
 raw() {
-	$gg -T30 $ggflags "gemini://localhost:10965/$1"
+	$gg -T10 $ggflags "gemini://localhost:10965/$1"
 }
 
 # usage: fetch <path>