Commit 9eafe107 authored by Benjamin Peterson's avatar Benjamin Peterson

use concise skipping

parent 17b490d7
...@@ -449,7 +449,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): ...@@ -449,7 +449,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
try: try:
value_bytes = value.encode(sys.getfilesystemencoding(), 'surrogateescape') value_bytes = value.encode(sys.getfilesystemencoding(), 'surrogateescape')
except UnicodeEncodeError: except UnicodeEncodeError:
raise unittest.SkipTest("U+20AC character is not encodable to %s" % sys.getfilesystemencoding()) raise self.skip("U+20AC character is not encodable to %s" % sys.getfilesystemencoding())
os.environ['unicode'] = value os.environ['unicode'] = value
self.assertEquals(os.environ['unicode'], value) self.assertEquals(os.environ['unicode'], value)
self.assertEquals(os.environb[b'unicode'], value_bytes) self.assertEquals(os.environb[b'unicode'], value_bytes)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment