mirror of
https://github.com/google/googletest.git
synced 2025-12-06 16:57:00 +08:00
googletest-output-test: fix RemoveTestCounts for non-golden platforms
This seems to have been missed when renaming "test cases" -> "test suites" in 3a460a26b7a91abf87af7f31b93d29f930e25c82. Presumably no such platform is regularly tested...
This commit is contained in:
parent
f10e11fb27
commit
01f9c536ce
@ -175,7 +175,7 @@ def RemoveTestCounts(output):
|
||||
output = re.sub(r'\d+ tests?, listed below', '? tests, listed below', output)
|
||||
output = re.sub(r'\d+ FAILED TESTS', '? FAILED TESTS', output)
|
||||
output = re.sub(
|
||||
r'\d+ tests? from \d+ test cases?', '? tests from ? test cases', output
|
||||
r'\d+ tests? from \d+ test suites?', '? tests from ? test suites', output
|
||||
)
|
||||
output = re.sub(r'\d+ tests? from ([a-zA-Z_])', r'? tests from \1', output)
|
||||
return re.sub(r'\d+ tests?\.', '? tests.', output)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user