[Python-checkins] r80892 - python/branches/py3k/Lib/test/test_os.py

benjamin.peterson python-checkins at python.org
Fri May 7 00:26:31 CEST 2010


Author: benjamin.peterson
Date: Fri May  7 00:26:31 2010
New Revision: 80892

Log:
self.skip -> self.skipTest

Modified:
   python/branches/py3k/Lib/test/test_os.py

Modified: python/branches/py3k/Lib/test/test_os.py
==============================================================================
--- python/branches/py3k/Lib/test/test_os.py	(original)
+++ python/branches/py3k/Lib/test/test_os.py	Fri May  7 00:26:31 2010
@@ -452,7 +452,7 @@
         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)


More information about the Python-checkins mailing list