diff options
-rw-r--r-- | Lib/test/test_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index f4814fa..727b00e 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -452,7 +452,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): except UnicodeEncodeError: msg = "U+20AC character is not encodable to %s" % ( sys.getfilesystemencoding(),) - self.skip(msg) + self.skipTest(msg) os.environ['unicode'] = value self.assertEquals(os.environ['unicode'], value) self.assertEquals(os.environb[b'unicode'], value_bytes) |