diff options
Diffstat (limited to 'Lib/test/test_pipes.py')
| -rw-r--r-- | Lib/test/test_pipes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pipes.py b/Lib/test/test_pipes.py index 0eca8ed..45c9faf 100644 --- a/Lib/test/test_pipes.py +++ b/Lib/test/test_pipes.py @@ -2,10 +2,10 @@ import pipes import os import string import unittest -from test.test_support import TESTFN, run_unittest, unlink, TestSkipped +from test.test_support import TESTFN, run_unittest, unlink, SkipTest if os.name != 'posix': - raise TestSkipped('pipes module only works on posix') + raise SkipTest('pipes module only works on posix') TESTFN2 = TESTFN + "2" |
