aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-uvloop/tcp-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py3-uvloop/tcp-tests.patch')
-rw-r--r--testing/py3-uvloop/tcp-tests.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/py3-uvloop/tcp-tests.patch b/testing/py3-uvloop/tcp-tests.patch
deleted file mode 100644
index e5619bc217b..00000000000
--- a/testing/py3-uvloop/tcp-tests.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Adjust error message for musl-based systems.
-
---- a/tests/test_tcp.py
-+++ b/tests/test_tcp.py
-@@ -221,8 +221,8 @@ class _TestTCP:
- addr = sock.getsockname()
-
- with self.assertRaisesRegex(OSError,
-- r"error while attempting.*\('127.*: "
-- r"address already in use"):
-+ r"\[Errno 98\] error while attempting.*\('127.*: "
-+ r"address in use"):
-
- self.loop.run_until_complete(
- self.loop.create_server(object, *addr))