summaryrefslogtreecommitdiffstats
path: root/Lib/unittest.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-03-24 01:33:55 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-03-24 01:33:55 (GMT)
commit4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788 (patch)
tree26abe9aa44da29ed61e2250c21a3e02612b0f155 /Lib/unittest.py
parent70e32c837f685c19e160f0b965ff5e275c835f8b (diff)
downloadcpython-4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788.zip
cpython-4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788.tar.gz
cpython-4c93dcbbefe0e1d5e62527a244bd2d3fa1ec0788.tar.bz2
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 ........
Diffstat (limited to 'Lib/unittest.py')
-rw-r--r--Lib/unittest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest.py b/Lib/unittest.py
index 0831d8d..13cbfd3 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