diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_packetizer.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_packetizer.py b/tests/test_packetizer.py index 5fa54e4a..15a7c93f 100644 --- a/tests/test_packetizer.py +++ b/tests/test_packetizer.py @@ -75,8 +75,9 @@ class PacketizerTest (unittest.TestCase): self.assertEqual(1, m.get_int()) self.assertEqual(900, m.get_int()) - @unittest.skipIf(sys.platform.startswith("win"), 'no SIGALRM on windows') def test_3_closed(self): + if sys.platform.startswith("win"): # no SIGALRM on windows + return rsock = LoopSocket() wsock = LoopSocket() rsock.link(wsock) |