aboutsummaryrefslogtreecommitdiffstats
path: root/test/netlib
diff options
context:
space:
mode:
Diffstat (limited to 'test/netlib')
-rw-r--r--test/netlib/test_strutils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/netlib/test_strutils.py b/test/netlib/test_strutils.py
index 84a0dded..a50fc40a 100644
--- a/test/netlib/test_strutils.py
+++ b/test/netlib/test_strutils.py
@@ -29,10 +29,6 @@ def test_clean_bin():
assert strutils.clean_bin(u"\u2605") == u"\u2605"
-def test_safe_subn():
- assert strutils.safe_subn("foo", u"bar", "\xc2foo")
-
-
def test_bytes_to_escaped_str():
assert strutils.bytes_to_escaped_str(b"foo") == "foo"
assert strutils.bytes_to_escaped_str(b"\b") == r"\x08"