diff options
author | Andrzej Ratajczak <andrzej.ratajczak98@gmail.com> | 2020-10-01 16:15:14 +0200 |
---|---|---|
committer | Kamil Doległo <9080183+kamildoleglo@users.noreply.github.com> | 2020-10-01 17:01:21 +0200 |
commit | 71b03f6d311c6ebfdf67c593e97a7483a64844f4 (patch) | |
tree | 6409cea41bdcde2a56159de86e9610e94e72375e /core/test-api | |
parent | fbee5a49ee4c21bf0f31362bf1f9af46adba7a44 (diff) | |
download | dokka-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.kt | 2 |
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""") } } |