From 0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 13 Sep 2019 18:27:59 +0100 Subject: Fix typo in test_api.py. (GH-16119) --- 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 edb745c..0fb1346 100644 --- a/Lib/test/test_importlib/test_api.py +++ b/Lib/test/test_importlib/test_api.py @@ -363,7 +363,7 @@ class ReloadTests: 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) -- cgit v0.12