From 4643a41238be97c7a1d76ad5f4fb3b0517e2ef07 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 13 Sep 2019 17:53:18 +0100 Subject: [PATCH] Fix typo in test_api.py. --- Lib/test/test_importlib/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_importlib/test_api.py b/Lib/test/test_importlib/test_api.py index edb745c2cd49ba..0fb1346f9eec8f 100644 --- a/Lib/test/test_importlib/test_api.py +++ b/Lib/test/test_importlib/test_api.py @@ -363,7 +363,7 @@ def test_reload_submodule(self): def test_module_missing_spec(self): #Test that reload() throws ModuleNotFounderror when reloading - # a module who's missing a spec. (bpo-29851) + # a module whose missing a spec. (bpo-29851) name = 'spam' with test_util.uncache(name): module = sys.modules[name] = types.ModuleType(name)