[Python-checkins] r80334 - python/branches/py3k/Lib/test/test_genericpath.py

r.david.murray python-checkins at python.org
Thu Apr 22 03:49:37 CEST 2010


Author: r.david.murray
Date: Thu Apr 22 03:49:37 2010
New Revision: 80334

Log:
Fix verb tense in skip message.


Modified:
   python/branches/py3k/Lib/test/test_genericpath.py

Modified: python/branches/py3k/Lib/test/test_genericpath.py
==============================================================================
--- python/branches/py3k/Lib/test/test_genericpath.py	(original)
+++ python/branches/py3k/Lib/test/test_genericpath.py	Thu Apr 22 03:49:37 2010
@@ -286,7 +286,7 @@
                     self.assertIsInstance(abspath(path), str)
 
     @unittest.skipIf(sys.platform == 'darwin',
-        "Mac OS X deny the creation of a directory with an invalid utf8 name")
+        "Mac OS X denies the creation of a directory with an invalid utf8 name")
     def test_nonascii_abspath(self):
         # Test non-ASCII, non-UTF8 bytes in the path.
         with support.temp_cwd(b'\xe7w\xf0'):


More information about the Python-checkins mailing list