diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-05-06 22:26:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-05-06 22:26:31 (GMT) |
commit | 932d3f417718a955f53ff2430e3565908c2f91d6 (patch) | |
tree | 4f467a7a5c4b26fe70b4b07d5e5745aa2a06d070 /Lib | |
parent | 180799d4b39be181a52f72f27ff0bc5d0a151653 (diff) | |
download | cpython-932d3f417718a955f53ff2430e3565908c2f91d6.zip cpython-932d3f417718a955f53ff2430e3565908c2f91d6.tar.gz cpython-932d3f417718a955f53ff2430e3565908c2f91d6.tar.bz2 |
self.skip -> self.skipTest
Diffstat (limited to 'Lib')
-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) |