diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-14 15:10:09 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-14 15:10:09 +0100 |
commit | ea0ba6d143106eafaf6bbc15ee60e0fe82c049c0 (patch) | |
tree | 8214328208b2d3973c5615adc05b7a412a0e445d /test/test_flow.py | |
parent | 5e65b933b291a4e53d27ce5671f776d828769f89 (diff) | |
parent | 4767474d4b867f5a85c7ea9ad5b8140a7bfa8b68 (diff) | |
download | mitmproxy-ea0ba6d143106eafaf6bbc15ee60e0fe82c049c0.tar.gz mitmproxy-ea0ba6d143106eafaf6bbc15ee60e0fe82c049c0.tar.bz2 mitmproxy-ea0ba6d143106eafaf6bbc15ee60e0fe82c049c0.zip |
Merge pull request #935 from mitmproxy/coding-style
Improve Coding Style
Diffstat (limited to 'test/test_flow.py')
-rw-r--r-- | test/test_flow.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_flow.py b/test/test_flow.py index 51b88fff..b122489f 100644 --- a/test/test_flow.py +++ b/test/test_flow.py @@ -350,7 +350,7 @@ class TestFlow(object): def test_copy(self): f = tutils.tflow(resp=True) - a0 = f.get_state() + f.get_state() f2 = f.copy() a = f.get_state() b = f2.get_state() @@ -532,7 +532,6 @@ class TestState: assert c.flow_count() == 2 assert c.active_flow_count() == 1 - _ = HTTPResponse.wrap(netlib.tutils.tresp()) assert not c.update_flow(None) assert c.active_flow_count() == 1 |