diff --git a/tests/channel.py b/tests/channel.py index d74434e..33016e0 100644 --- a/tests/channel.py +++ b/tests/channel.py @@ -415,7 +415,7 @@ class TestChannel(unittest.TestCase): nonlocal count, write_finished count = writer.write(data.encode("utf-8")) writer.flush() - writer.close() + # writer.close() # TODO: Temporary workaround for https://github.com/python/cpython/issues/138720 write_finished = True threading.Thread(target=write_thread, name="Write Thread", daemon=True).start()