diff options
author | alts <stephen@evilrobotstuff.com> | 2011-07-16 02:47:06 -0700 |
---|---|---|
committer | alts <stephen@evilrobotstuff.com> | 2011-07-16 02:47:06 -0700 |
commit | 6dc0f105ccabeb10f557dc8baa51d3ce08b3c8ee (patch) | |
tree | 977c6339d1562a333b1d2087853248ea5ed32771 /test/test_utils.py | |
parent | 94ae720a220da4beaa2fc6111b4cafb60b41d33b (diff) | |
download | mitmproxy-6dc0f105ccabeb10f557dc8baa51d3ce08b3c8ee.tar.gz mitmproxy-6dc0f105ccabeb10f557dc8baa51d3ce08b3c8ee.tar.bz2 mitmproxy-6dc0f105ccabeb10f557dc8baa51d3ce08b3c8ee.zip |
Adds support for content encoding, namely gip and deflate
Diffstat (limited to 'test/test_utils.py')
-rw-r--r-- | test/test_utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_utils.py b/test/test_utils.py index 2b0f4342..2ff951d4 100644 --- a/test/test_utils.py +++ b/test/test_utils.py @@ -98,7 +98,7 @@ class uHeaders(libpry.AutoTree): out = repr(self.hd) for i in expected: assert out.find(i) >= 0 - + def test_dictToHeader2(self): self.hd["one"] = ["uno"] expected1 = "one: uno\r\n" |