[Python-checkins] cpython: Tweak skipping message

brett.cannon python-checkins at python.org
Mon Dec 28 20:21:48 EST 2015


https://hg.python.org/cpython/rev/ea06ef0bfd36
changeset:   99707:ea06ef0bfd36
user:        Brett Cannon <brett at python.org>
date:        Mon Dec 28 17:21:44 2015 -0800
summary:
  Tweak skipping message

files:
  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
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -2809,7 +2809,7 @@
             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.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list