diff options
| author | Aldo Cortesi <aldo@nullcube.com> | 2016-09-09 11:15:07 +1200 |
|---|---|---|
| committer | Aldo Cortesi <aldo@nullcube.com> | 2016-09-09 11:15:07 +1200 |
| commit | c1bb5821295678db0d7f3fa4481c3aa28108f161 (patch) | |
| tree | 63c122d8b979cfbc09f321f311699376d3a8f259 /test | |
| parent | 715e47e3d4cc16c95d572ccc871cc24417ee358a (diff) | |
| download | mitmproxy-c1bb5821295678db0d7f3fa4481c3aa28108f161.tar.gz mitmproxy-c1bb5821295678db0d7f3fa4481c3aa28108f161.tar.bz2 mitmproxy-c1bb5821295678db0d7f3fa4481c3aa28108f161.zip | |
Fix interactive server replay in mitmproxy console
Diffstat (limited to 'test')
| -rw-r--r-- | test/mitmproxy/test_addons.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/mitmproxy/test_addons.py b/test/mitmproxy/test_addons.py index f59f99d6..52d7f07f 100644 --- a/test/mitmproxy/test_addons.py +++ b/test/mitmproxy/test_addons.py @@ -17,8 +17,5 @@ def test_simple(): m = controller.Master(o) a = addons.Addons(m) a.add(o, TAddon("one")) - assert a.has_addon("one") - assert not a.has_addon("two") - assert a.get("one") - assert not a.get("nonexistent") + assert not a.get("two") |
