diff options
author | Brett Cannon <brett@python.org> | 2015-12-29 01:21:44 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-12-29 01:21:44 (GMT) |
commit | 3bbad12b5bd41235bfb6e675606b046d30296eed (patch) | |
tree | f189da541ee708129851f9356598f7ca440a1371 /Lib/test/test_socket.py | |
parent | b4783f4bc187c319e472834c54937a7f0efea9c2 (diff) | |
download | cpython-3bbad12b5bd41235bfb6e675606b046d30296eed.zip cpython-3bbad12b5bd41235bfb6e675606b046d30296eed.tar.gz cpython-3bbad12b5bd41235bfb6e675606b046d30296eed.tar.bz2 |
Tweak skipping message
Diffstat (limited to 'Lib/test/test_socket.py')
-rw-r--r-- | Lib/test/test_socket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index ad1efb2..99707ce 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -2809,7 +2809,7 @@ class SCMRightsTest(SendrecvmsgServerTimeoutBase): nbytes = self.sendmsgToServer([msg]) self.assertEqual(nbytes, len(msg)) - @unittest.skipIf(sys.platform == "darwin", "skipping, see issue #24725") + @unittest.skipIf(sys.platform == "darwin", "see issue #24725") def testFDPassEmpty(self): # Try to pass an empty FD array. Can receive either no array # or an empty array. |