diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:49:40 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-26 20:49:40 (GMT) |
commit | ad57d97596bb9466e6fce0c3dfcf436fd5c36ff9 (patch) | |
tree | 4628b41cd09a837a8ea85e902636972b54148aef /Lib | |
parent | 888a39b54c4f47ee25d53b157e2c50402627cd0b (diff) | |
download | cpython-ad57d97596bb9466e6fce0c3dfcf436fd5c36ff9.zip cpython-ad57d97596bb9466e6fce0c3dfcf436fd5c36ff9.tar.gz cpython-ad57d97596bb9466e6fce0c3dfcf436fd5c36ff9.tar.bz2 |
fix naming
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 0e289c1..73135a7 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -33,7 +33,7 @@ class Error(Exception): class TestFailed(Error): """Test failed.""" -class ResourceDenied(SkipTest): +class ResourceDenied(unittest.SkipTest): """Test skipped because it requested a disallowed resource. This is raised when a test calls requires() for a resource that |