aboutsummaryrefslogtreecommitdiffstats
path: root/test/netlib/http/test_response.py
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2016-05-31 20:19:54 +1200
committerAldo Cortesi <aldo@nullcube.com>2016-05-31 20:19:54 +1200
commit5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d (patch)
tree861f30e6d52228b44f22cc4089b3500d73708309 /test/netlib/http/test_response.py
parent40a030f215e1943aefdb2eb6fe2a264b9b1ee33c (diff)
downloadmitmproxy-5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d.tar.gz
mitmproxy-5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d.tar.bz2
mitmproxy-5a75ea3fc65d08c802b4d5fea73e1494ce90aa7d.zip
Fix test failures
Diffstat (limited to 'test/netlib/http/test_response.py')
-rw-r--r--test/netlib/http/test_response.py2
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)"