Skip to content

Commit 73e6b95

Browse files
committed
Fix failing tests
1 parent 43e6081 commit 73e6b95

File tree

1 file changed

+3
-2
lines changed
  • dokka-subprojects/plugin-base/src/test/kotlin/markdown

1 file changed

+3
-2
lines changed

dokka-subprojects/plugin-base/src/test/kotlin/markdown/LinkTest.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import org.jetbrains.dokka.pages.MemberPageNode
1818
import utils.OnlyDescriptors
1919
import utils.OnlySymbols
2020
import utils.text
21+
import utils.withExperimentalKDocResolution
2122
import kotlin.test.Test
2223
import kotlin.test.assertEquals
2324
import kotlin.test.assertNotNull
@@ -612,7 +613,7 @@ class LinkTest : BaseAbstractTest() {
612613

613614
@Test
614615
@OnlySymbols("KEEP #389: New KDoc resolution")
615-
fun `fully qualified link should lead to package K2`() {
616+
fun `fully qualified link should lead to package K2`() = withExperimentalKDocResolution {
616617
// for the test case, there is the only one link candidate in K1 and K2
617618
testInline(
618619
"""
@@ -795,7 +796,7 @@ class LinkTest : BaseAbstractTest() {
795796

796797
@Test
797798
@OnlySymbols("KEEP #389: New KDoc resolution")
798-
fun `short link should lead to package rather than function K2`() {
799+
fun `short link should lead to package rather than function K2`() = withExperimentalKDocResolution {
799800
testInline(
800801
"""
801802
|/src/main/kotlin/Testing.kt

0 commit comments

Comments
 (0)