From: R. David Murray Date: Thu, 22 Apr 2010 01:49:37 +0000 (+0000) Subject: Fix verb tense in skip message. X-Git-Tag: v3.2a1~1054 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6f916d32056eff9373d9ad769d2830d6dc4559b;p=python Fix verb tense in skip message. --- diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 5d68e98d70..9a0f2267f3 100644 --- a/Lib/test/test_genericpath.py +++ b/Lib/test/test_genericpath.py @@ -286,7 +286,7 @@ class CommonTest(GenericTest): 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'):