summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_support.py
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-09-20 06:31:22 (GMT)
committerBarry Warsaw <barry@python.org>2001-09-20 06:31:22 (GMT)
commitc88425e2b283b34e2a481c12dccffec4da731cab (patch)
treef5c9008bdcf0319db9c41b6e6c9fe115f57cbed3 /Lib/test/test_support.py
parentc10d69074467dd54a77ec0b666e6327d3de1e389 (diff)
downloadcpython-c88425e2b283b34e2a481c12dccffec4da731cab.zip
cpython-c88425e2b283b34e2a481c12dccffec4da731cab.tar.gz
cpython-c88425e2b283b34e2a481c12dccffec4da731cab.tar.bz2
run_suite(): Oops, update a docstring.
Diffstat (limited to 'Lib/test/test_support.py')
-rw-r--r--Lib/test/test_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index b60fcc7..d2a485f 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -158,7 +158,7 @@ class BasicTestRunner:
def run_suite(suite):
- """Run tests from a unittest.TestCase-derived class."""
+ """Run tests from a unittest.TestSuite-derived class."""
if verbose:
runner = unittest.TextTestRunner(sys.stdout, verbosity=2)
else: