From: Benjamin Peterson Date: Tue, 24 Mar 2009 01:33:55 +0000 (+0000) Subject: Merged revisions 70574 via svnmerge from X-Git-Tag: v3.1a2~218 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788;p=python Merged revisions 70574 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70574 | benjamin.peterson | 2009-03-23 20:11:37 -0500 (Mon, 23 Mar 2009) | 1 line fix typo ........ --- diff --git a/Lib/unittest.py b/Lib/unittest.py index 0831d8d7d2..13cbfd349c 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