diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-12-05 21:07:08 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-12-05 21:07:08 -0800 |
commit | 8039c736e4a4b2505cd1760c516c24fe8abffbce (patch) | |
tree | 24b2240246cd530b1ab15f0588274841694a7099 | |
parent | c7d52bd032ef87f8a51d64fb1b8bed4166acceb8 (diff) | |
parent | 4fb0195e95c1edc125012f12474ffeaed109e410 (diff) |
Merge branch '2.0'
-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 123df75f..a1ea398c 100644 --- a/tests/test_packetizer.py +++ b/tests/test_packetizer.py @@ -84,8 +84,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) |