diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:11:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-24 01:11:37 (GMT) |
commit | 037154865e9f1f9dd64a1120a76ebc899cc86f95 (patch) | |
tree | 21ef15253ee4bf00b98c29c3666cbc3d7ffb732e /Lib | |
parent | c750d4d7617e1dc276c9bea7af3457b3a5d66ae4 (diff) | |
download | cpython-037154865e9f1f9dd64a1120a76ebc899cc86f95.zip cpython-037154865e9f1f9dd64a1120a76ebc899cc86f95.tar.gz cpython-037154865e9f1f9dd64a1120a76ebc899cc86f95.tar.bz2 |
fix typo
Diffstat (limited to 'Lib')
-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 22f8a3d..46761dc 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 |