Commit 797a49c8 authored by Victor Stinner's avatar Victor Stinner

Oops, unittest has no SkipTest exception. I understood the original change:

replace unittest.SkipTest by TestSkipped.
parent b46d7ba1
......@@ -16,7 +16,7 @@ def get_enUS_locale():
# The locale test work fine on OSX 10.6, I (ronaldoussoren)
# haven't had time yet to verify if tests work on OSX 10.5
# (10.4 is known to be bad)
raise unittest.SkipTest("Locale support on MacOSX is minimal")
raise TestSkipped("Locale support on MacOSX is minimal")
if sys.platform.startswith("win"):
tlocs = ("En", "English")
else:
......
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