diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-30 10:39:44 +0000 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-30 10:39:44 +0000 |
commit | dc92ce97af394f38c7528da58e345d01148a072d (patch) | |
tree | 10393d8b8f2dd1943501bf3a467d327fe8b1e507 | |
parent | 34f9277d5643908b324102edcfa84903f7aab3cd (diff) | |
download | cpython-git-dc92ce97af394f38c7528da58e345d01148a072d.tar.gz |
Fix an oversight in merge r78282.
-rw-r--r-- | Lib/test/test_curses.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index 4439fcd13c..856f9c622e 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') |