r3453 - trunk/varnish-cache/bin/varnishtest/tests

phk at projects.linpro.no phk at projects.linpro.no
Wed Dec 3 11:39:15 CET 2008


Author: phk
Date: 2008-12-03 11:39:15 +0100 (Wed, 03 Dec 2008)
New Revision: 3453

Modified:
   trunk/varnish-cache/bin/varnishtest/tests/c00008.vtc
Log:
Wrap some long lines



Modified: trunk/varnish-cache/bin/varnishtest/tests/c00008.vtc
===================================================================
--- trunk/varnish-cache/bin/varnishtest/tests/c00008.vtc	2008-12-02 20:48:11 UTC (rev 3452)
+++ trunk/varnish-cache/bin/varnishtest/tests/c00008.vtc	2008-12-03 10:39:15 UTC (rev 3453)
@@ -5,7 +5,8 @@
 server s1 {
 	rxreq
 	expect req.url == "/foo"
-	txresp -hdr "Last-Modified: Thu, 26 Jun 2008 12:00:01 GMT" -body "11111\n"
+	txresp -hdr "Last-Modified: Thu, 26 Jun 2008 12:00:01 GMT" \
+	    -body "11111\n"
 } -start
 
 varnish v1 -vcl+backend { } -start
@@ -16,15 +17,18 @@
 	expect resp.status == 200
 	expect resp.http.content-length == 6
 
-	txreq -url "/foo" -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:00 GMT"
+	txreq -url "/foo" \
+	    -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:00 GMT"
 	rxresp
 	expect resp.status == 200
 
-	txreq -url "/foo" -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:01 GMT"
+	txreq -url "/foo" \
+	    -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:01 GMT"
 	rxresp
 	expect resp.status == 304
 
-	txreq -url "/foo" -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:02 GMT"
+	txreq -url "/foo" \
+	    -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:02 GMT"
 	rxresp
 	expect resp.status == 304
 } 



More information about the varnish-commit mailing list