From 2cb7429d38243d95664791d3edd7c4894efd6ee9 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Thu, 3 Feb 2011 14:51:32 +1300 Subject: Change "connection" to the less confusing "client_conn" throughout. --- test/test_filt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_filt.py') diff --git a/test/test_filt.py b/test/test_filt.py index 036c1892..b25058c5 100644 --- a/test/test_filt.py +++ b/test/test_filt.py @@ -72,7 +72,7 @@ class uParsing(libpry.AutoTree): class uMatching(libpry.AutoTree): def req(self): - conn = proxy.BrowserConnection("one", 2222) + conn = proxy.ClientConnection("one", 2222) headers = utils.Headers() headers["header"] = ["qvalue"] return proxy.Request( -- cgit v1.2.3 From 2ad4c5adf38e627fc4534548610235ce1c590c66 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Fri, 4 Feb 2011 10:05:07 +1300 Subject: Get rid of ReplayConnection - we now have only one ClientConnection class. --- test/test_filt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_filt.py') diff --git a/test/test_filt.py b/test/test_filt.py index b25058c5..43addd3e 100644 --- a/test/test_filt.py +++ b/test/test_filt.py @@ -72,7 +72,7 @@ class uParsing(libpry.AutoTree): class uMatching(libpry.AutoTree): def req(self): - conn = proxy.ClientConnection("one", 2222) + conn = proxy.ClientConnection(("one", 2222)) headers = utils.Headers() headers["header"] = ["qvalue"] return proxy.Request( -- cgit v1.2.3