aboutsummaryrefslogtreecommitdiffstats
path: root/test/netlib/test_tcp.py
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-19 00:30:37 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-19 00:30:37 +0100
commit2bec6a35e211422c61a5404ec6a8c7572c318b54 (patch)
tree1865b6a3acf374bd46bd1ef864c4e87dc9f2808e /test/netlib/test_tcp.py
parentecb26c3c822ff4f4c61233c8265faed666625677 (diff)
downloadmitmproxy-2bec6a35e211422c61a5404ec6a8c7572c318b54.tar.gz
mitmproxy-2bec6a35e211422c61a5404ec6a8c7572c318b54.tar.bz2
mitmproxy-2bec6a35e211422c61a5404ec6a8c7572c318b54.zip
fix #956
Diffstat (limited to 'test/netlib/test_tcp.py')
-rw-r--r--test/netlib/test_tcp.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/netlib/test_tcp.py b/test/netlib/test_tcp.py
index e65a2e2f..4b4bbb92 100644
--- a/test/netlib/test_tcp.py
+++ b/test/netlib/test_tcp.py
@@ -748,17 +748,15 @@ class TestPeekSSL(TestPeek):
class TestAddress:
-
def test_simple(self):
- a = tcp.Address("localhost", True)
+ a = tcp.Address(("localhost", 80), True)
assert a.use_ipv6
- b = tcp.Address("foo.com", True)
+ b = tcp.Address(("foo.com", 80), True)
assert not a == b
- assert str(b) == str(tuple("foo.com"))
- c = tcp.Address("localhost", True)
+ c = tcp.Address(("localhost", 80), True)
assert a == c
assert not a != c
- assert repr(a)
+ assert repr(a) == "localhost:80"
class TestSSLKeyLogger(tservers.ServerTestBase):