aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorkira0204 <rshtmudgal@gmail.com>2018-03-07 16:12:12 +0530
committerkira0204 <rshtmudgal@gmail.com>2018-03-07 16:12:12 +0530
commit167e01acdfac792412b48fd2b30e7bd85b028cda (patch)
tree4e9d0b28ab8068e6c55c86bb3d246c45274ff6b6 /test
parent57197c3e6cad1c1ef16e3538c0032ce94e239553 (diff)
downloadmitmproxy-167e01acdfac792412b48fd2b30e7bd85b028cda.tar.gz
mitmproxy-167e01acdfac792412b48fd2b30e7bd85b028cda.tar.bz2
mitmproxy-167e01acdfac792412b48fd2b30e7bd85b028cda.zip
fixing lint
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/test_command.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mitmproxy/test_command.py b/test/mitmproxy/test_command.py
index 6b8bc7b0..0c8d7208 100644
--- a/test/mitmproxy/test_command.py
+++ b/test/mitmproxy/test_command.py
@@ -321,9 +321,9 @@ def test_collect_commands():
c = command.CommandManager(tctx.master)
a = TDec()
c.collect_commands(a)
- assert not "cmd1" in c.commands
- assert not "cmd2" in c.commands
- assert not "empty" in c.commands
+ assert "cmd1" not in c.commands
+ assert "cmd2" not in c.commands
+ assert "empty" not in c.commands
def test_decorator():