| Index: ios/build/bots/scripts/xctest_utils.py
|
| diff --git a/ios/build/bots/scripts/xctest_utils.py b/ios/build/bots/scripts/xctest_utils.py
|
| index 1d9d35ffe653620f100613c3a57b327bebf8a729..139082d18f04b0157fd57950978a90e899cfbf9f 100644
|
| --- a/ios/build/bots/scripts/xctest_utils.py
|
| +++ b/ios/build/bots/scripts/xctest_utils.py
|
| @@ -240,7 +240,7 @@ class XCTestLogParser(object):
|
| # Is it a test failure line?
|
| results = self._test_fail.match(line)
|
| if results:
|
| - test_name = '%s.%s' % (results.group(1), results.group(2))
|
| + test_name = '%s/%s' % (results.group(1), results.group(2))
|
| status = self._StatusOfTest(test_name)
|
| if status not in ('started', 'failed', 'timeout'):
|
| self._RecordError(line, 'failure while in status %s' % status)
|
|
|