diff options
author | Leo Arias <leo.arias@canonical.com> | 2018-02-04 00:36:10 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-02-04 00:36:10 (GMT) |
commit | c3d9508ff22ece9a96892b628dd5813e2fb0cd80 (patch) | |
tree | 56271a3b3e3681e47e97ec2dca926bc9cb891a5e /Lib/unittest | |
parent | 589c718a8e3bde017350f248f7f1c009240eb52b (diff) | |
download | cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.zip cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.gz cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.bz2 |
bpo-32746: Fix multiple typos (GH-5144)
Fix typos found by codespell in docs, docstrings, and comments.
Diffstat (limited to 'Lib/unittest')
-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*')]) |