summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_curses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_curses.py b/Lib/test/test_curses.py
index 5a197cffd4..8411cdb0f2 100644
--- a/Lib/test/test_curses.py
+++ b/Lib/test/test_curses.py
@@ -44,7 +44,7 @@ class TestCurses(unittest.TestCase):
def setUpClass(cls):
if not sys.__stdout__.isatty():
# Temporary skip tests on non-tty
- self.skip('sys.__stdout__ is not a tty')
+ raise unittest.SkipTest('sys.__stdout__ is not a tty')
cls.tmp = tempfile.TemporaryFile()
fd = cls.tmp.fileno()
else: