summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-09-13 17:27:59 (GMT)
committerGitHub <noreply@github.com>2019-09-13 17:27:59 (GMT)
commit0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0 (patch)
tree4b198b3a328b02c3c3ad2e4cc9d06a9123101bb3 /Lib
parentd44542f9a231bf725ecd82eb640a672c759a8227 (diff)
downloadcpython-0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0.zip
cpython-0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0.tar.gz
cpython-0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0.tar.bz2
Fix typo in test_api.py. (GH-16119)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_importlib/test_api.py2
1 files changed, 1 insertions, 1 deletions
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)