From 71b03f6d311c6ebfdf67c593e97a7483a64844f4 Mon Sep 17 00:00:00 2001 From: Andrzej Ratajczak Date: Thu, 1 Oct 2020 16:15:14 +0200 Subject: Add parsing of package-info in java sources --- core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/test-api/src/main/kotlin/testApi') diff --git a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt index 27fc7024..db253a9d 100644 --- a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt +++ b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt @@ -187,7 +187,7 @@ abstract class AbstractCoreTest( ) companion object { - private val filePathRegex = Regex("""[\n^](/\w+)+(\.\w+)?\s*\n""") + private val filePathRegex = Regex("""[\n^](\/[\w|\-]+)+(\.\w+)?\s*\n""") } } -- cgit