Skip to content

Commit 46a39a9

Browse files
committed
Fix ClasspathBasedStandardLibrariesPathProvider.kt after Kotlin update
1 parent 2f1e5a5 commit 46a39a9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test-mokkery-compiler/src/testDefault/kotlin/dev/mokkery/tests/ClasspathBasedStandardLibrariesPathProvider.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package dev.mokkery.tests
22

33
import org.jetbrains.kotlin.test.services.KotlinStandardLibrariesPathProvider
44
import java.io.File
5-
import kotlin.text.get
65

76
object ClasspathBasedStandardLibrariesPathProvider : KotlinStandardLibrariesPathProvider {
87
private val SEP = "\\${File.separator}"
@@ -54,5 +53,7 @@ object ClasspathBasedStandardLibrariesPathProvider : KotlinStandardLibrariesPath
5453

5554
override fun kotlinTestJsKLib(): File = getFile("kotlin-test-js")
5655

56+
override fun webStdlibForTests(): File = getFile("kotlin-stdlib-web")
57+
5758
override fun scriptingPluginFilesForTests(): Collection<File> = TODO()
5859
}

0 commit comments

Comments
 (0)