diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2011-09-09 14:49:34 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2011-09-09 14:49:34 +1200 |
commit | 28daa93268dc0f488c53d49a6d6eb1f6fb76d533 (patch) | |
tree | 121fd9d33c9ce089738c5d901d07b0913f491e2d /test/tutils.py | |
parent | 362fdf9bae85250634c59d07b60158ff642a12c0 (diff) | |
download | mitmproxy-28daa93268dc0f488c53d49a6d6eb1f6fb76d533.tar.gz mitmproxy-28daa93268dc0f488c53d49a6d6eb1f6fb76d533.tar.bz2 mitmproxy-28daa93268dc0f488c53d49a6d6eb1f6fb76d533.zip |
Basic infrastructure for request and response body size limits.
Diffstat (limited to 'test/tutils.py')
-rw-r--r-- | test/tutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tutils.py b/test/tutils.py index f7a49577..bed99caf 100644 --- a/test/tutils.py +++ b/test/tutils.py @@ -50,7 +50,7 @@ HTTPS_PORT = random.randint(30000, 40000) class TestMaster(controller.Master): def __init__(self, port, testq): - serv = proxy.ProxyServer(proxy.SSLConfig("data/testkey.pem"), port) + serv = proxy.ProxyServer(proxy.ProxyConfig("data/testkey.pem"), port) controller.Master.__init__(self, serv) self.testq = testq self.log = [] |