[master] 6bf2322 Cater to fgs' PEP8-OCD :-)

Poul-Henning Kamp phk at FreeBSD.org
Tue Nov 25 19:34:09 CET 2014


commit 6bf232292ba63233bb10f68f9e12b002a1a7db91
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Tue Nov 25 18:33:45 2014 +0000

    Cater to fgs' PEP8-OCD :-)

diff --git a/bin/varnishtest/tests/m00019.vtc b/bin/varnishtest/tests/m00019.vtc
index 6dd8722..f7b2386 100644
--- a/bin/varnishtest/tests/m00019.vtc
+++ b/bin/varnishtest/tests/m00019.vtc
@@ -10,9 +10,9 @@ varnish v1 -vcl+backend {
 
 	sub vcl_deliver {
 		set resp.http.foo1 = debug.argtest("1", 2.0, "3");
-		set resp.http.foo2 = debug.argtest("1", two = 2.0, three = "3");
-		set resp.http.foo3 = debug.argtest("1", three = "3", two = 2.0);
-		set resp.http.foo4 = debug.argtest("1", 2.0, three = "3");
+		set resp.http.foo2 = debug.argtest("1", two=2.0, three="3");
+		set resp.http.foo3 = debug.argtest("1", three="3", two=2.0);
+		set resp.http.foo4 = debug.argtest("1", 2.0, three="3");
 		set resp.http.foo5 = debug.argtest("1", 2.0);
 		set resp.http.foo6 = debug.argtest("1");
 	}
@@ -36,7 +36,7 @@ varnish v1 -errvcl {Argument 'one' already used} {
 	import ${vmod_debug};
 	backend b1 {.host = "127.0.0.1";}
 	sub vcl_deliver {
-		set resp.http.foo5 = debug.argtest("1", one = "1");
+		set resp.http.foo5 = debug.argtest("1", one="1");
 	}
 }
 
@@ -44,7 +44,7 @@ varnish v1 -errvcl {Argument 'one' missing} {
 	import ${vmod_debug};
 	backend b1 {.host = "127.0.0.1";}
 	sub vcl_deliver {
-		set resp.http.foo5 = debug.argtest(two = 2.0, three = "3");
+		set resp.http.foo5 = debug.argtest(two=2.0, three="3");
 	}
 }
 
@@ -52,6 +52,6 @@ varnish v1 -errvcl {Unknown argument 'four'} {
 	import ${vmod_debug};
 	backend b1 {.host = "127.0.0.1";}
 	sub vcl_deliver {
-		set resp.http.foo5 = debug.argtest("1", two = 2.0, four = "3");
+		set resp.http.foo5 = debug.argtest("1", two=2.0, four="3");
 	}
 }



More information about the varnish-commit mailing list