diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-05-26 22:58:01 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-05-26 22:58:01 +0200 |
commit | ef1c36194e0cb3ac82304eb95fb323d71ec5ebab (patch) | |
tree | ff0bae88a827d2446eaad98a928ef813a5b517f3 /test | |
parent | f5eaddb12c1b6775c8f72e56abd10ede2b877755 (diff) | |
download | mitmproxy-ef1c36194e0cb3ac82304eb95fb323d71ec5ebab.tar.gz mitmproxy-ef1c36194e0cb3ac82304eb95fb323d71ec5ebab.tar.bz2 mitmproxy-ef1c36194e0cb3ac82304eb95fb323d71ec5ebab.zip |
coverage++
Diffstat (limited to 'test')
-rw-r--r-- | test/mitmproxy/test_flowfilter.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/mitmproxy/test_flowfilter.py b/test/mitmproxy/test_flowfilter.py index 46fff477..fe9b2408 100644 --- a/test/mitmproxy/test_flowfilter.py +++ b/test/mitmproxy/test_flowfilter.py @@ -209,6 +209,9 @@ class TestMatchingHTTPFlow: assert self.q("~u address:22/path", q) assert not self.q("~u moo/path", q) + q.request = None + assert not self.q("~u address", q) + assert self.q("~u address", s) assert self.q("~u address:22/path", s) assert not self.q("~u moo/path", s) |