diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:12:18 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-27 10:36:28 +0100 |
commit | 8c375383148f100f03aed52827ac513f145078c2 (patch) | |
tree | dbae3b5d4d603e5e226477f1938119e2acfcfc1f /test/test_proxy.py | |
parent | c2bb29f669cd80509f4efe205551a9cf5fc29770 (diff) | |
download | mitmproxy-8c375383148f100f03aed52827ac513f145078c2.tar.gz mitmproxy-8c375383148f100f03aed52827ac513f145078c2.tar.bz2 mitmproxy-8c375383148f100f03aed52827ac513f145078c2.zip |
code formatting: fix whitespace issues
Diffstat (limited to 'test/test_proxy.py')
-rw-r--r-- | test/test_proxy.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py index 1759f07a..f4ce6135 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -54,6 +54,7 @@ class TestServerConnection(object): class TestProcessProxyOptions: + def p(self, *args): parser = tutils.MockParser() cmdline.common_options(parser) @@ -151,6 +152,7 @@ class TestProcessProxyOptions: class TestProxyServer: # binding to 0.0.0.0:1 works without special permissions on Windows + @tutils.skip_windows def test_err(self): conf = ProxyConfig( @@ -166,6 +168,7 @@ class TestProxyServer: class TestDummyServer: + def test_simple(self): d = DummyServer(None) d.start_slave() @@ -173,6 +176,7 @@ class TestDummyServer: class TestConnectionHandler: + def test_fatal_error(self): config = mock.Mock() root_layer = mock.Mock() |