From 74fa5473c0a920b3354bc547845b93b581e332f1 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 23 May 2022 15:43:11 +0200 Subject: [PATCH] test_threaded_import: Fix unittest.main spelling Regressed in 40348acc180. --- Lib/test/test_importlib/test_threaded_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/test_threaded_import.py b/Lib/test/test_importlib/test_threaded_import.py index cc1d804f35f913..9aeeb5e686e936 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()