summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian May <brian@linuxpenguins.xyz>2018-03-16 18:40:32 +1100
committerBrian May <brian@linuxpenguins.xyz>2018-03-16 18:40:32 +1100
commit884bd6deb0b699a5648bb1c7bdfbc7be8ea0e7df (patch)
treebda458f2c99bd6c72437598daab875c6239d9635
parenta215f1b227a7e9a1e6d0985e7b67373c3f522e71 (diff)
Remove test that fails under OSX
Fixes #213
-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():