Lib/test/support: fix typo in docstring (GH-8506)

This commit is contained in:
Daniel Hahler 2018-09-11 03:04:33 +02:00 committed by Gregory P. Smith
parent ed2e9ab804
commit e578fa162e
1 changed files with 2 additions and 2 deletions

View File

@ -1955,8 +1955,8 @@ def set_match_tests(patterns):
def match_test_regex(test_id):
if regex_match(test_id):
# The regex matchs the whole identifier like
# 'test.test_os.FileTests.test_access'
# The regex matches the whole identifier, for example
# 'test.test_os.FileTests.test_access'.
return True
else:
# Try to match parts of the test identifier.