diff options
Diffstat (limited to 'Lib/test/test_poll.py')
| -rw-r--r-- | Lib/test/test_poll.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index c346ba005f..7ab3b84a97 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -1,12 +1,12 @@ # Test case for the os.poll() function import os, select, random, unittest -from test.support import TestSkipped, TESTFN, run_unittest +from test.support import TESTFN, run_unittest try: select.poll except AttributeError: - raise TestSkipped("select.poll not defined -- skipping test_poll") + raise unittest.SkipTest("select.poll not defined -- skipping test_poll") def find_ready_matching(ready, flag): |
