diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:48:25 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:48:25 +0000 |
commit | 888a39b54c4f47ee25d53b157e2c50402627cd0b (patch) | |
tree | 67a48f107d83b8451e338f1ea822f2b4c65f6960 /Lib/test/test_curses.py | |
parent | 21f6aac633a78271e762d6cd4b709e6a91d0c42a (diff) | |
download | cpython-git-888a39b54c4f47ee25d53b157e2c50402627cd0b.tar.gz |
remove test_support.TestSkipped and just use unittest.SkipTest
Diffstat (limited to 'Lib/test/test_curses.py')
-rw-r--r-- | Lib/test/test_curses.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py index d1b80f88dc..9fe344aecc 100644 --- a/Lib/test/test_curses.py +++ b/Lib/test/test_curses.py @@ -16,16 +16,16 @@ import curses.panel # 'curses' resource be given on the regrtest command line using the -u # option. If not available, nothing after this line will be executed. -from test.test_support import requires, TestSkipped +from test.test_support import requires, SkipTest requires('curses') # XXX: if newterm was supported we could use it instead of initscr and not exit term = os.environ.get('TERM') if not term or term == 'unknown': - raise TestSkipped, "$TERM=%r, calling initscr() may cause exit" % term + raise SkipTest, "$TERM=%r, calling initscr() may cause exit" % term if sys.platform == "cygwin": - raise TestSkipped("cygwin's curses mostly just hangs") + raise SkipTest("cygwin's curses mostly just hangs") def window_funcs(stdscr): "Test the methods of windows" |