diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2014-02-07 10:50:57 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2014-02-07 10:50:57 +1300 |
commit | 0baa296613506f20b362a4d54b6a94ec27e1097b (patch) | |
tree | 69c78dfbabf2cd25a8bb0e67439b56c0d5a4df09 /test/tutils.py | |
parent | 1572d14cc336215a7cf8d6e20b4ad4a25bfd60ef (diff) | |
parent | b64e1ccf9152d5f7fc7a933e1b77d18185fecb22 (diff) | |
download | mitmproxy-0baa296613506f20b362a4d54b6a94ec27e1097b.tar.gz mitmproxy-0baa296613506f20b362a4d54b6a94ec27e1097b.tar.bz2 mitmproxy-0baa296613506f20b362a4d54b6a94ec27e1097b.zip |
Merge branch 'tcp_proxy'
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 59649053..1baf16e2 100644 --- a/test/tutils.py +++ b/test/tutils.py @@ -50,7 +50,7 @@ class DaemonTests: def pathoc(self, spec, timeout=None, connect_to=None, ssl=None): if ssl is None: ssl = self.ssl - c = pathoc.Pathoc("localhost", self.d.port, ssl=ssl) + c = pathoc.Pathoc(("localhost", self.d.port), ssl=ssl) c.connect(connect_to) if timeout: c.settimeout(timeout) |