From dbd75e02f706c7802943d3cd82e1082970c7a0fc Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Mon, 20 Feb 2012 11:29:36 +1300 Subject: Create ODictCaseless for headers, use vanilla ODict for everything else. --- test/test_filt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_filt.py') diff --git a/test/test_filt.py b/test/test_filt.py index 6c9df232..d9d92ffe 100644 --- a/test/test_filt.py +++ b/test/test_filt.py @@ -74,7 +74,7 @@ class uParsing(libpry.AutoTree): class uMatching(libpry.AutoTree): def req(self): conn = flow.ClientConnect(("one", 2222)) - headers = flow.ODict() + headers = flow.ODictCaseless() headers["header"] = ["qvalue"] return flow.Request( conn, @@ -89,7 +89,7 @@ class uMatching(libpry.AutoTree): def resp(self): q = self.req() - headers = flow.ODict() + headers = flow.ODictCaseless() headers["header_response"] = ["svalue"] return flow.Response( q, -- cgit v1.2.3