From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 13 Sep 2019 17:49:09 +0000 (-0700) Subject: Fix typo in test_api.py. (GH-16119) X-Git-Tag: v3.8.0rc1~107 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd85200f6d7a92fab04dd8b4745e6ff8d79f231e;p=python Fix typo in test_api.py. (GH-16119) (cherry picked from commit 0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0) Co-authored-by: Benjamin Peterson --- diff --git a/Lib/test/test_importlib/test_api.py b/Lib/test/test_importlib/test_api.py index edb745c2cd..0fb1346f9e 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)