diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:48:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:48:25 (GMT) |
commit | 888a39b54c4f47ee25d53b157e2c50402627cd0b (patch) | |
tree | 67a48f107d83b8451e338f1ea822f2b4c65f6960 /Lib/test/test_nis.py | |
parent | 21f6aac633a78271e762d6cd4b709e6a91d0c42a (diff) | |
download | cpython-888a39b54c4f47ee25d53b157e2c50402627cd0b.zip cpython-888a39b54c4f47ee25d53b157e2c50402627cd0b.tar.gz cpython-888a39b54c4f47ee25d53b157e2c50402627cd0b.tar.bz2 |
remove test_support.TestSkipped and just use unittest.SkipTest
Diffstat (limited to 'Lib/test/test_nis.py')
-rw-r--r-- | Lib/test/test_nis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_nis.py b/Lib/test/test_nis.py index c958d4b..0026953 100644 --- a/Lib/test/test_nis.py +++ b/Lib/test/test_nis.py @@ -10,7 +10,7 @@ class NisTests(unittest.TestCase): # NIS is probably not active, so this test isn't useful if test_support.verbose: print "Test Skipped:", msg - # Can't raise TestSkipped as regrtest only recognizes the exception + # Can't raise SkipTest as regrtest only recognizes the exception # import time. return try: |