From 932d3f417718a955f53ff2430e3565908c2f91d6 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 6 May 2010 22:26:31 +0000 Subject: self.skip -> self.skipTest --- Lib/test/test_os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v0.12