aboutsummaryrefslogtreecommitdiff
path: root/core/test-api
diff options
context:
space:
mode:
authorAndrzej Ratajczak <andrzej.ratajczak98@gmail.com>2020-10-01 16:15:14 +0200
committerKamil Doległo <9080183+kamildoleglo@users.noreply.github.com>2020-10-01 17:01:21 +0200
commit71b03f6d311c6ebfdf67c593e97a7483a64844f4 (patch)
tree6409cea41bdcde2a56159de86e9610e94e72375e /core/test-api
parentfbee5a49ee4c21bf0f31362bf1f9af46adba7a44 (diff)
downloaddokka-71b03f6d311c6ebfdf67c593e97a7483a64844f4.tar.gz
dokka-71b03f6d311c6ebfdf67c593e97a7483a64844f4.tar.bz2
dokka-71b03f6d311c6ebfdf67c593e97a7483a64844f4.zip
Add parsing of package-info in java sources
Diffstat (limited to 'core/test-api')
-rw-r--r--core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt2
1 files changed, 1 insertions, 1 deletions
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""")
}
}