diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-19 12:20:14 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-04-19 12:20:14 (GMT) |
commit | 797a49c8792b0ebd3babd3a2f3919f078f85924f (patch) | |
tree | bb6465943b938ff8e29f1f740164037700c30d44 /Lib | |
parent | b46d7ba12fc56c13e674a87bcca5143012627016 (diff) | |
download | cpython-797a49c8792b0ebd3babd3a2f3919f078f85924f.zip cpython-797a49c8792b0ebd3babd3a2f3919f078f85924f.tar.gz cpython-797a49c8792b0ebd3babd3a2f3919f078f85924f.tar.bz2 |
Oops, unittest has no SkipTest exception. I understood the original change:
replace unittest.SkipTest by TestSkipped.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_locale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index 9528d45..3f611be 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -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: |