Skip to content

Commit cd85200

Browse files
Fix typo in test_api.py. (GH-16119)
(cherry picked from commit 0bc17ea) Co-authored-by: Benjamin Peterson <[email protected]>
1 parent cf25765 commit cd85200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_importlib/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def test_reload_submodule(self):
363363

364364
def test_module_missing_spec(self):
365365
#Test that reload() throws ModuleNotFounderror when reloading
366-
# a module who's missing a spec. (bpo-29851)
366+
# a module whose missing a spec. (bpo-29851)
367367
name = 'spam'
368368
with test_util.uncache(name):
369369
module = sys.modules[name] = types.ModuleType(name)

0 commit comments

Comments
 (0)