diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-22 18:23:36 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-22 18:23:36 +0300 |
commit | 0a91e43820d68155997bb236c23f9090a722189d (patch) | |
tree | a1a6fec98e887a4fe9877cc57238f0c8b3d00fcc | |
parent | 53a00353b61b527c36447fffc1473d69ce8095bf (diff) | |
download | cpython-git-0a91e43820d68155997bb236c23f9090a722189d.tar.gz |
Fixed an error in previous commit.
-rw-r--r-- | Lib/test/test_curses.py | 2 |
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: |