summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/test
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2017-01-18 12:11:42 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2017-01-18 12:11:42 (GMT)
commit9722d7f142e3ad21ccb7764a816bb8202ab7addc (patch)
tree13b551807b3957b5eb5cb8f0105e3de336eab292 /Lib/unittest/test
parent2a1b676d1f412dcf6e65c3dbc118c81d925fab64 (diff)
parent4710935b119d24b2cc1ffce37d0f7f8c6a9fceab (diff)
downloadcpython-9722d7f142e3ad21ccb7764a816bb8202ab7addc.zip
cpython-9722d7f142e3ad21ccb7764a816bb8202ab7addc.tar.gz
cpython-9722d7f142e3ad21ccb7764a816bb8202ab7addc.tar.bz2
Issue 29274: Merge doc fixes from 3.6
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r--Lib/unittest/test/test_loader.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/unittest/test/test_loader.py b/Lib/unittest/test/test_loader.py
index b2f9c88..1131a75 100644
--- a/Lib/unittest/test/test_loader.py
+++ b/Lib/unittest/test/test_loader.py
@@ -35,7 +35,7 @@ class Test_TestLoader(unittest.TestCase):
### Tests for TestLoader.loadTestsFromTestCase
################################################################
- # "Return a suite of all tests cases contained in the TestCase-derived
+ # "Return a suite of all test cases contained in the TestCase-derived
# class testCaseClass"
def test_loadTestsFromTestCase(self):
class Foo(unittest.TestCase):
@@ -48,7 +48,7 @@ class Test_TestLoader(unittest.TestCase):
loader = unittest.TestLoader()
self.assertEqual(loader.loadTestsFromTestCase(Foo), tests)
- # "Return a suite of all tests cases contained in the TestCase-derived
+ # "Return a suite of all test cases contained in the TestCase-derived
# class testCaseClass"
#
# Make sure it does the right thing even if no tests were found
@@ -61,7 +61,7 @@ class Test_TestLoader(unittest.TestCase):
loader = unittest.TestLoader()
self.assertEqual(loader.loadTestsFromTestCase(Foo), empty_suite)
- # "Return a suite of all tests cases contained in the TestCase-derived
+ # "Return a suite of all test cases contained in the TestCase-derived
# class testCaseClass"
#
# What happens if loadTestsFromTestCase() is given an object
@@ -82,7 +82,7 @@ class Test_TestLoader(unittest.TestCase):
else:
self.fail('Should raise TypeError')
- # "Return a suite of all tests cases contained in the TestCase-derived
+ # "Return a suite of all test cases contained in the TestCase-derived
# class testCaseClass"
#
# Make sure loadTestsFromTestCase() picks up the default test method