From: Brett Cannon Date: Tue, 29 Dec 2015 01:21:44 +0000 (-0800) Subject: Tweak skipping message X-Git-Tag: v3.6.0a1~848 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3bbad12b5bd41235bfb6e675606b046d30296eed;p=thirdparty%2FPython%2Fcpython.git Tweak skipping message --- diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index ad1efb281868..99707cec9b83 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.