summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sshuttle/tests/client/test_options.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/sshuttle/tests/client/test_options.py b/sshuttle/tests/client/test_options.py
index 53b46f5..ccfd526 100644
--- a/sshuttle/tests/client/test_options.py
+++ b/sshuttle/tests/client/test_options.py
@@ -67,9 +67,6 @@ def test_parse_subnetport_ip6():
for ip_repr, ip in _ip6_reprs.items():
assert sshuttle.options.parse_subnetport(ip_repr) \
== (socket.AF_INET6, ip, 128, 0, 0)
- with pytest.raises(Fatal) as excinfo:
- sshuttle.options.parse_subnetport('2001::1::3f')
- assert str(excinfo.value) == 'Unable to resolve address: 2001::1::3f'
def test_parse_subnetport_ip6_with_mask():