Skip to content

Commit 26abf77

Browse files
committed
feat(ios): support arbitrary strings in TestRunProgressParser as identifiers
1 parent ab1920a commit 26abf77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vendor/vendor-ios/src/main/kotlin/com/malinskiy/marathon/ios/logparser/parser/TestRunProgressParser.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class TestRunProgressParser(
1818

1919
val logger = MarathonLogging.logger(TestRunProgressParser::class.java.simpleName)
2020

21-
val TEST_CASE_STARTED = """Test Case '-\[([a-zA-Z0-9_.]+) ([a-zA-Z0-9_ ]+)]' started\.""".toRegex()
21+
val TEST_CASE_STARTED = """Test Case '-\[(.+) (.+)]' started\.""".toRegex()
2222
val TEST_CASE_FINISHED =
23-
"""Test Case '-\[([a-zA-Z0-9_.]+) ([a-zA-Z0-9_ ]+)]' (passed|failed|skipped) \(([\d\.]+) seconds\)\.""".toRegex()
23+
"""Test Case '-\[(.+) (.+)]' (passed|failed|skipped) \(([\d\.]+) seconds\)\.""".toRegex()
2424

2525
/**
2626
* $1 = file

0 commit comments

Comments
 (0)