diff options
Diffstat (limited to 'test/test_custom_contentview.py')
-rw-r--r-- | test/test_custom_contentview.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/test_custom_contentview.py b/test/test_custom_contentview.py index 4b5a3e53..adc4109b 100644 --- a/test/test_custom_contentview.py +++ b/test/test_custom_contentview.py @@ -1,4 +1,3 @@ -from libmproxy import script, flow import libmproxy.contentviews as cv from netlib.http import Headers @@ -12,7 +11,6 @@ def test_custom_views(): def __call__(self, data, **metadata): return "noop", cv.format_text(data) - view_obj = ViewNoop() cv.add(view_obj) @@ -48,5 +46,3 @@ def test_custom_views(): ) ) assert "noop" not in r[0] - - |