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 | 4fb0195e95c1edc125012f12474ffeaed109e410 (patch) | |
tree | 24b2240246cd530b1ab15f0588274841694a7099 /tests/test_packetizer.py | |
parent | 702dbd2d1b51bfc92edd66e09cf97f37a11d9584 (diff) | |
parent | 228ca8035d73bc3d557ef9d3f23e0e08fdd11644 (diff) |
Merge branch '1.18' into 2.0
Diffstat (limited to 'tests/test_packetizer.py')
-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) |