summaryrefslogtreecommitdiff
path: root/Lib/test/test_multibytecodec_support.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-11-01 16:04:09 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2009-11-01 16:04:09 +0000
commit344ec44be1290434254b58e8e8aae157d8bc1159 (patch)
tree1a465bae66ed4da366f31998ef00a5d52b4918cc /Lib/test/test_multibytecodec_support.py
parent412f41e8ece0ef933162757abb5d32f0809d4285 (diff)
downloadcpython-git-344ec44be1290434254b58e8e8aae157d8bc1159.tar.gz
Merged revisions 76010 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r76010 | antoine.pitrou | 2009-11-01 16:59:11 +0100 (dim., 01 nov. 2009) | 3 lines Fix test skipping in multibyte codec tests ........
Diffstat (limited to 'Lib/test/test_multibytecodec_support.py')
-rw-r--r--Lib/test/test_multibytecodec_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_multibytecodec_support.py b/Lib/test/test_multibytecodec_support.py
index 5e68856b7a..e4036bf2c6 100644
--- a/Lib/test/test_multibytecodec_support.py
+++ b/Lib/test/test_multibytecodec_support.py
@@ -279,7 +279,7 @@ class TestBase_Mapping(unittest.TestCase):
try:
self.open_mapping_file() # test it to report the error early
except IOError:
- raise support.TestSkipped("Could not retrieve "+self.mapfileurl)
+ self.skipTest("Could not retrieve "+self.mapfileurl)
def open_mapping_file(self):
return support.open_urlresource(self.mapfileurl)