diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-13 16:22:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-05-13 16:22:15 (GMT) |
commit | 37368163bd2772c611f565f2bef95c8ba684918e (patch) | |
tree | 06fa16ed0f26984ade7e5c8dc9a2ce73bdac22f9 | |
parent | 20c3258bf24da6cffd004e793b3a88b694ffaebd (diff) | |
download | cpython-37368163bd2772c611f565f2bef95c8ba684918e.zip cpython-37368163bd2772c611f565f2bef95c8ba684918e.tar.gz cpython-37368163bd2772c611f565f2bef95c8ba684918e.tar.bz2 |
Fix verb tense in skip message.
Ooops, merge also r80334 (patch by r.david.murray)
-rw-r--r-- | Lib/test/test_genericpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py index 765cbc1..972d00e 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'): |