aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_console.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_console.py')
-rw-r--r--test/test_console.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/test_console.py b/test/test_console.py
index 3304fdbb..a807d381 100644
--- a/test/test_console.py
+++ b/test/test_console.py
@@ -1,9 +1,4 @@
-import os
-import sys
-import mock
import gc
-from os.path import normpath
-import mock_urwid
import netlib.tutils
from libmproxy import console
@@ -13,6 +8,7 @@ import tutils
class TestConsoleState:
+
def test_flow(self):
"""
normal flow:
@@ -89,7 +85,7 @@ class TestConsoleState:
f = self._add_request(c)
c.add_flow_setting(f, "foo", "bar")
assert c.get_flow_setting(f, "foo") == "bar"
- assert c.get_flow_setting(f, "oink") == None
+ assert c.get_flow_setting(f, "oink") is None
assert c.get_flow_setting(f, "oink", "foo") == "foo"
assert len(c.flowsettings) == 1
c.delete_flow(f)