From: Florent Xicluna Date: Tue, 30 Mar 2010 10:39:44 +0000 (+0000) Subject: Fix an oversight in merge r78282. X-Git-Tag: v2.6.6rc1~525 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc92ce97af394f38c7528da58e345d01148a072d;p=thirdparty%2FPython%2Fcpython.git Fix an oversight in merge r78282. --- diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index 4439fcd13c59..856f9c622e2b 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -23,7 +23,8 @@ requires('curses') # FreeBSD buildbots, preventing other tests from running. See issue # #7384. if 'freebsd' in sys.platform: - raise unittest.SkipTest('The curses module is broken on FreeBSD. See http://bugs.python.org/issue7384.') + raise TestSkipped('The curses module is broken on FreeBSD. ' + 'See http://bugs.python.org/issue7384.') # XXX: if newterm was supported we could use it instead of initscr and not exit term = os.environ.get('TERM')