From 6592598999d993da7c8726c63be5053f87afdd26 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Sun, 20 Jan 2019 07:15:53 +0000 Subject: [PATCH] tests: stray socket file left during unix_test. --- tests/unix_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unix_test.py b/tests/unix_test.py index 300efb84..0bc5fc81 100644 --- a/tests/unix_test.py +++ b/tests/unix_test.py @@ -74,6 +74,7 @@ class ListenerTest(testlib.RouterMixin, testlib.TestCase): finally: capture.stop() + class ClientTest(testlib.TestCase): klass = mitogen.unix.Listener @@ -97,6 +98,7 @@ class ClientTest(testlib.TestCase): self.assertEquals(0, resp['auth_id']) router.broker.shutdown() router.broker.join() + os.unlink(path) def _test_simple_server(self, path): router = mitogen.master.Router()