diff options
author | Brett Cannon <brett@python.org> | 2012-11-14 20:16:53 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-11-14 20:16:53 (GMT) |
commit | cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e (patch) | |
tree | 48d166a1fad3f85c13b24b0d0a1a42626ff45dce /Lib/test/test_poll.py | |
parent | 8c5ec0a3af75a6779dad4101d0a9ad421f64fa60 (diff) | |
download | cpython-cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e.zip cpython-cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e.tar.gz cpython-cd8efa3704bc1aec1338fdc8fc0cfe8ee5bc100e.tar.bz2 |
Clean up the messages used by some tests.
Diffstat (limited to 'Lib/test/test_poll.py')
-rw-r--r-- | Lib/test/test_poll.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_poll.py b/Lib/test/test_poll.py index 7ab3b84..720cff3 100644 --- a/Lib/test/test_poll.py +++ b/Lib/test/test_poll.py @@ -6,7 +6,7 @@ from test.support import TESTFN, run_unittest try: select.poll except AttributeError: - raise unittest.SkipTest("select.poll not defined -- skipping test_poll") + raise unittest.SkipTest("select.poll not defined") def find_ready_matching(ready, flag): |