diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-05-31 20:19:54 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-05-31 20:19:54 +1200 |
commit | 5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d (patch) | |
tree | 861f30e6d52228b44f22cc4089b3500d73708309 /test/netlib | |
parent | 40a030f215e1943aefdb2eb6fe2a264b9b1ee33c (diff) | |
download | mitmproxy-5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d.tar.gz mitmproxy-5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d.tar.bz2 mitmproxy-5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d.zip |
Fix test failures
Diffstat (limited to 'test/netlib')
-rw-r--r-- | test/netlib/http/test_response.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/netlib/http/test_response.py b/test/netlib/http/test_response.py index 1faef7ec..b3c2f736 100644 --- a/test/netlib/http/test_response.py +++ b/test/netlib/http/test_response.py @@ -24,7 +24,7 @@ class TestResponseCore(object): """ def test_repr(self): response = tresp() - assert repr(response) == "Response(200 OK, unknown content type, 7B)" + assert repr(response) == "Response(200 OK, unknown content type, 7b)" response.content = None assert repr(response) == "Response(200 OK, no content)" |