diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 18:12:11 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-06-18 18:15:22 +0200 |
commit | 7a3623a14ee2ffa021c1a2a8f337826e055b328d (patch) | |
tree | 7abdfdba135ea1f6022a8a72b1c52371f76fbea2 /test/test_test.py | |
parent | 90aeda47aead50110ee4a0a29b01edd170539818 (diff) | |
download | mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.tar.gz mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.tar.bz2 mitmproxy-7a3623a14ee2ffa021c1a2a8f337826e055b328d.zip |
fix pep8 whitespace
Diffstat (limited to 'test/test_test.py')
-rw-r--r-- | test/test_test.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/test_test.py b/test/test_test.py index 681aa290..eaaf83d3 100644 --- a/test/test_test.py +++ b/test/test_test.py @@ -6,6 +6,7 @@ logging.disable(logging.CRITICAL) class TestDaemonManual: + def test_simple(self): with test.Daemon() as d: rsp = requests.get("http://localhost:%s/p/202:da" % d.port) @@ -34,9 +35,9 @@ class TestDaemonManual: def test_startstop_ssl_explicit(self): ssloptions = dict( - certfile = tutils.test_data.path("data/testkey.pem"), - cacert = tutils.test_data.path("data/testkey.pem"), - ssl_after_connect = False + certfile=tutils.test_data.path("data/testkey.pem"), + cacert=tutils.test_data.path("data/testkey.pem"), + ssl_after_connect=False ) d = test.Daemon(ssl=ssloptions) rsp = requests.get( |