From 37368163bd2772c611f565f2bef95c8ba684918e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 13 May 2010 16:22:15 +0000 Subject: [PATCH] Fix verb tense in skip message. Ooops, merge also r80334 (patch by r.david.murray) --- Lib/test/test_genericpath.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 765cbc1c10..972d00ee62 100644 --- a/Lib/test/test_genericpath.py +++ b/Lib/test/test_genericpath.py @@ -238,7 +238,7 @@ class CommonTest(GenericTest): self.assertIsInstance(abspath(path), unicode) @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 test_support.temp_cwd('\xe7w\xf0'): -- 2.50.1