[master] c3c5596 break up long lines for legibility
Nils Goroll
nils.goroll at uplex.de
Tue Dec 19 16:15:10 UTC 2017
commit c3c5596f2c5d0013b60d79827f8054a790e59972
Author: Nils Goroll <nils.goroll at uplex.de>
Date: Tue Dec 19 17:13:37 2017 +0100
break up long lines for legibility
diff --git a/bin/varnishtest/tests/c00016.vtc b/bin/varnishtest/tests/c00016.vtc
index bfe33d4..847fb87 100644
--- a/bin/varnishtest/tests/c00016.vtc
+++ b/bin/varnishtest/tests/c00016.vtc
@@ -11,7 +11,9 @@ server s1 {
expect req.url == "/bar"
expect req.http.Foo == <undef>
expect req.http.FromVCL == "123"
- txresp -hdr "Bar: fnry,glyf, FOO ,brok" -hdr "Connection: bar" -body "foobar"
+ txresp -hdr "Bar: fnry,glyf, FOO ,brok" \
+ -hdr "Connection: bar" \
+ -body "foobar"
} -start
varnish v1 -vcl+backend {
@@ -25,13 +27,18 @@ client c1 {
rxresp
expect resp.http.Bar == "foo"
- txreq -url "/bar" -hdr "Foo: bar2" -hdr "Connection: FromVCL, foo, close"
+ txreq -url "/bar" \
+ -hdr "Foo: bar2" \
+ -hdr "Connection: FromVCL, foo, close"
rxresp
expect req.http.Bar == <undef>
} -run
client c1 {
- txreq -url "/bar" -hdr "foo: 1" -hdr "Age: 200" -hdr "Connection: Age"
+ txreq -url "/bar" \
+ -hdr "foo: 1" \
+ -hdr "Age: 200" \
+ -hdr "Connection: Age"
rxresp
expect resp.status == 400
} -run
More information about the varnish-commit
mailing list