diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2016-10-17 17:11:21 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2016-10-17 17:37:08 +1300 |
commit | fb22f2ff4f75783ba786935c93b75f372ede21f5 (patch) | |
tree | a7055ebd090e11b163efa81b86086b7f88ca89e6 /test/netlib/http/test_response.py | |
parent | 666c59cbfbcbd28062c201c3cb5d6cb928e90aee (diff) | |
download | mitmproxy-fb22f2ff4f75783ba786935c93b75f372ede21f5.tar.gz mitmproxy-fb22f2ff4f75783ba786935c93b75f372ede21f5.tar.bz2 mitmproxy-fb22f2ff4f75783ba786935c93b75f372ede21f5.zip |
Zap object base class
Diffstat (limited to 'test/netlib/http/test_response.py')
-rw-r--r-- | test/netlib/http/test_response.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/netlib/http/test_response.py b/test/netlib/http/test_response.py index e97cc419..6ab043c1 100644 --- a/test/netlib/http/test_response.py +++ b/test/netlib/http/test_response.py @@ -11,7 +11,7 @@ from netlib.tutils import raises, tresp from .test_message import _test_passthrough_attr, _test_decoded_attr -class TestResponseData(object): +class TestResponseData(): def test_init(self): with raises(ValueError): tresp(headers="foobar") @@ -19,7 +19,7 @@ class TestResponseData(object): assert isinstance(tresp(headers=()).headers, Headers) -class TestResponseCore(object): +class TestResponseCore(): """ Tests for builtins and the attributes that are directly proxied from the data structure """ @@ -60,7 +60,7 @@ class TestResponseCore(object): _test_decoded_attr(tresp(), "reason") -class TestResponseUtils(object): +class TestResponseUtils(): """ Tests for additional convenience methods. """ |