Commit 01596363 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Use double quotes in command lines for consistency.

parent 7ac7c119
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ http
--write-out test
 </name>
 <command>
http://%HOSTIP:%HTTPPORT/want/15 --write-out '%{url_effective} %{http_code} %{size_download}\n'
http://%HOSTIP:%HTTPPORT/want/15 --write-out "%{url_effective} %{http_code} %{size_download}\n"
</command>
</client>

+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ http
multiple requests using {} in URL
 </name>
 <command>
'%HOSTIP:%HTTPPORT/{18,180002,180003}'
"%HOSTIP:%HTTPPORT/{18,180002,180003}"
</command>
</client>

+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ http
HTTP GET -w num_connects with one simple connect
 </name>
 <command>
http://%HOSTIP:%HTTPPORT/192 -w '%{num_connects}\n'
http://%HOSTIP:%HTTPPORT/192 -w "%{num_connects}\n"
</command>
</client>

+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ http
HTTP GET -w num_connects with redirected fetch (2 connects)
 </name>
 <command>
http://%HOSTIP:%HTTPPORT/193 -w '%{num_connects}\n' -L
http://%HOSTIP:%HTTPPORT/193 -w "%{num_connects}\n" -L
</command>
</client>

+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ http
HTTP with -d, -G and {}
 </name>
 <command>
-d "foo=moo&moo=poo" http://%HOSTIP:%HTTPPORT/{199,199} -G
-d "foo=moo&moo=poo" "http://%HOSTIP:%HTTPPORT/{199,199}" -G
</command>
</client>

Loading