Fix typo in test_api.py. (GH-16119)

This commit is contained in:
Benjamin Peterson 2019-09-13 18:27:59 +01:00 committed by GitHub
parent d44542f9a2
commit 0bc17ea2f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)