summaryrefslogtreecommitdiff
path: root/tests/test_packetizer.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2016-12-05 21:07:08 -0800
committerJeff Forcier <jeff@bitprophet.org>2016-12-05 21:07:08 -0800
commit4fb0195e95c1edc125012f12474ffeaed109e410 (patch)
tree24b2240246cd530b1ab15f0588274841694a7099 /tests/test_packetizer.py
parent702dbd2d1b51bfc92edd66e09cf97f37a11d9584 (diff)
parent228ca8035d73bc3d557ef9d3f23e0e08fdd11644 (diff)
downloadparamiko-4fb0195e95c1edc125012f12474ffeaed109e410.tar.gz
Merge branch '1.18' into 2.0
Diffstat (limited to 'tests/test_packetizer.py')
-rw-r--r--tests/test_packetizer.py3
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)