Fix test skipping in multibyte codec tests

This commit is contained in:
Antoine Pitrou 2009-11-01 15:59:11 +00:00
parent 5800b27104
commit c9e92167ac
2 changed files with 2 additions and 2 deletions

View file

@ -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)