diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-10-27 13:11:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-27 13:11:41 +0200 |
commit | edcd1fb24d01e11b5a8185328255f2005aadf037 (patch) | |
tree | 8156df7d2d29d8fd9d0fdaccad0fbb92b26e895f /core/test-api/src | |
parent | b1ccc2b346ea858762653933f9dd304b91c18505 (diff) | |
download | dokka-edcd1fb24d01e11b5a8185328255f2005aadf037.tar.gz dokka-edcd1fb24d01e11b5a8185328255f2005aadf037.tar.bz2 dokka-edcd1fb24d01e11b5a8185328255f2005aadf037.zip |
Implement analysis test API (#3184)
Diffstat (limited to 'core/test-api/src')
-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 23300190..0958ea14 100644 --- a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt +++ b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt @@ -113,7 +113,7 @@ public abstract class AbstractTest<M : TestMethods, T : TestBuilder<M>, D : Dokk block(tempDir) } finally { if (cleanUpAfterUse) { - tempDir.delete() + tempDir.deleteRecursively() } } } |