diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:11:37 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:11:37 +0000 |
commit | 037154865e9f1f9dd64a1120a76ebc899cc86f95 (patch) | |
tree | 21ef15253ee4bf00b98c29c3666cbc3d7ffb732e /Lib/unittest.py | |
parent | c750d4d7617e1dc276c9bea7af3457b3a5d66ae4 (diff) | |
download | cpython-git-037154865e9f1f9dd64a1120a76ebc899cc86f95.tar.gz |
fix typo
Diffstat (limited to 'Lib/unittest.py')
-rw-r--r-- | Lib/unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest.py b/Lib/unittest.py index 22f8a3d0d0..46761dc01f 100644 --- a/Lib/unittest.py +++ b/Lib/unittest.py @@ -57,7 +57,7 @@ import functools ############################################################################## __all__ = ['TestResult', 'TestCase', 'TestSuite', 'ClassTestSuite', 'TextTestRunner', 'TestLoader', 'FunctionTestCase', 'main', - 'defaultTestLoader', 'SkipException', 'skip', 'skipIf', 'skipUnless', + 'defaultTestLoader', 'SkipTest', 'skip', 'skipIf', 'skipUnless', 'expectedFailure'] # Expose obsolete functions for backwards compatibility |