diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2013-03-03 12:26:20 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2013-03-03 12:26:20 +1300 |
commit | e608d10f455550b8afd09217f0ecf344a0bdc814 (patch) | |
tree | 7642a59ace385c8aefc2c306b105567ff0333959 /test | |
parent | 75b5c970950f11249353ee10931305cfc1c21400 (diff) | |
download | mitmproxy-e608d10f455550b8afd09217f0ecf344a0bdc814.tar.gz mitmproxy-e608d10f455550b8afd09217f0ecf344a0bdc814.tar.bz2 mitmproxy-e608d10f455550b8afd09217f0ecf344a0bdc814.zip |
Remove __slots__ to make it possible to inherit from Options classes.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_dump.py | 1 | ||||
-rw-r--r-- | test/test_proxy.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/test/test_dump.py b/test/test_dump.py index 5d3f9133..1b434f81 100644 --- a/test/test_dump.py +++ b/test/test_dump.py @@ -101,7 +101,6 @@ class TestDumpMaster: def test_options(self): o = dump.Options(verbosity = 2) assert o.verbosity == 2 - libpry.raises(AttributeError, dump.Options, nonexistent = 2) def test_filter(self): assert not "GET" in self._dummy_cycle(1, "~u foo", "", verbosity=1) diff --git a/test/test_proxy.py b/test/test_proxy.py index 13feaead..5828d077 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -146,4 +146,3 @@ class TestDummyServer: d.start_slave() d.shutdown() - |