Fix verb tense in skip message.

Ooops, merge also r80334 (patch by r.david.murray)
This commit is contained in:
Victor Stinner 2010-05-13 16:22:15 +00:00
parent 20c3258bf2
commit 37368163bd

View file

@ -238,7 +238,7 @@ class CommonTest(GenericTest):
self.assertIsInstance(abspath(path), unicode) self.assertIsInstance(abspath(path), unicode)
@unittest.skipIf(sys.platform == 'darwin', @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): def test_nonascii_abspath(self):
# Test non-ASCII, non-UTF8 bytes in the path. # Test non-ASCII, non-UTF8 bytes in the path.
with test_support.temp_cwd('\xe7w\xf0'): with test_support.temp_cwd('\xe7w\xf0'):