Lib/test/support: fix typo in docstring (GH-8506)
This commit is contained in:
parent
ed2e9ab804
commit
e578fa162e
|
@ -1955,8 +1955,8 @@ def set_match_tests(patterns):
|
||||||
|
|
||||||
def match_test_regex(test_id):
|
def match_test_regex(test_id):
|
||||||
if regex_match(test_id):
|
if regex_match(test_id):
|
||||||
# The regex matchs the whole identifier like
|
# The regex matches the whole identifier, for example
|
||||||
# 'test.test_os.FileTests.test_access'
|
# 'test.test_os.FileTests.test_access'.
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
# Try to match parts of the test identifier.
|
# Try to match parts of the test identifier.
|
||||||
|
|
Loading…
Reference in New Issue