diff options
Diffstat (limited to 'Lib/unittest/test')
-rw-r--r-- | Lib/unittest/test/test_discovery.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/unittest/test/test_discovery.py b/Lib/unittest/test/test_discovery.py index 48d8fe9..227b44a 100644 --- a/Lib/unittest/test/test_discovery.py +++ b/Lib/unittest/test/test_discovery.py @@ -199,8 +199,8 @@ class TestDiscovery(unittest.TestCase): ['a_directory', 'test_directory', 'test_directory2']) # load_tests should have been called once with loader, tests and pattern - # (but there are no tests in our stub module itself, so thats [] at the - # time of call. + # (but there are no tests in our stub module itself, so that is [] at + # the time of call). self.assertEqual(Module.load_tests_args, [(loader, [], 'test*')]) |