diff options
author | Florian Bruhin <me@the-compiler.org> | 2022-05-25 07:59:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 07:59:32 (GMT) |
commit | 19710145b496b5e5341630d80be9c400aa792bd1 (patch) | |
tree | 326455da40597e4c39644ddfe2e0412046c5d12e | |
parent | 16a7e4a0b75080275bf12cfb71d54b01d85099b2 (diff) | |
download | cpython-19710145b496b5e5341630d80be9c400aa792bd1.zip cpython-19710145b496b5e5341630d80be9c400aa792bd1.tar.gz cpython-19710145b496b5e5341630d80be9c400aa792bd1.tar.bz2 |
test_threaded_import: Fix unittest.main spelling (GH-93114)
-rw-r--r-- | Lib/test/test_importlib/test_threaded_import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_threaded_import.py b/Lib/test/test_importlib/test_threaded_import.py index cc1d804..9aeeb5e 100644 --- a/Lib/test/test_importlib/test_threaded_import.py +++ b/Lib/test/test_importlib/test_threaded_import.py @@ -272,4 +272,4 @@ def setUpModule(): if __name__ == "__main__": - unittets.main() + unittest.main() |