diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-04-22 01:49:37 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-04-22 01:49:37 (GMT) |
commit | b6f916d32056eff9373d9ad769d2830d6dc4559b (patch) | |
tree | 333a1c69e212a588048f3b92f1efc97fbcac6475 /Lib/test/test_genericpath.py | |
parent | e572c63b10187aa1da4873a80580c3130832bf43 (diff) | |
download | cpython-b6f916d32056eff9373d9ad769d2830d6dc4559b.zip cpython-b6f916d32056eff9373d9ad769d2830d6dc4559b.tar.gz cpython-b6f916d32056eff9373d9ad769d2830d6dc4559b.tar.bz2 |
Fix verb tense in skip message.
Diffstat (limited to 'Lib/test/test_genericpath.py')
-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 5d68e98..9a0f226 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'): |