diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-25 08:17:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 08:17:57 (GMT) |
commit | 02d35fc4ef8a718e74ab97402b6d8371b69d3635 (patch) | |
tree | 1619d40cc2c8b18d09cbcbb4084a16fb96c2db2a | |
parent | 132ea299361e08c77c2b02ff25cf31eb73d3642f (diff) | |
download | cpython-02d35fc4ef8a718e74ab97402b6d8371b69d3635.zip cpython-02d35fc4ef8a718e74ab97402b6d8371b69d3635.tar.gz cpython-02d35fc4ef8a718e74ab97402b6d8371b69d3635.tar.bz2 |
test_threaded_import: Fix unittest.main spelling (GH-93114)
(cherry picked from commit 19710145b496b5e5341630d80be9c400aa792bd1)
Co-authored-by: Florian Bruhin <me@the-compiler.org>
-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 76b028e..d37eb29 100644 --- a/Lib/test/test_importlib/test_threaded_import.py +++ b/Lib/test/test_importlib/test_threaded_import.py @@ -270,4 +270,4 @@ def setUpModule(): if __name__ == "__main__": - unittets.main() + unittest.main() |