File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/test/kotlin/io/bazel/kotlin/builder/tasks/jvm Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ package io.bazel.kotlin.builder.tasks.jvm;
18
18
19
19
import com.google.common.truth.Truth.assertThat
20
20
import com.google.devtools.build.lib.view.proto.Deps
21
- import io.bazel.kotlin.builder.Deps.*
21
+ import io.bazel.kotlin.builder.Deps.Dep
22
22
import io.bazel.kotlin.builder.KotlinJvmTestBuilder
23
23
import org.junit.Test
24
24
import org.junit.runner.RunWith
@@ -455,7 +455,9 @@ class KotlinBuilderJvmJdepsTest(private val enableK2Compiler: Boolean) {
455
455
.setRuleLabel(dependingTarget.label())
456
456
.setSuccess(true )
457
457
.addExplicitDep(connectionNotFoundExceptionDep.singleCompileJar())
458
- .addExplicitDep(KOTLIN_STDLIB_DEP .singleCompileJar())
458
+ // TODO(https://github.com/bazelbuild/rules_kotlin/issues/1246): Uncomment for 2.1.20.
459
+ // See https://youtrack.jetbrains.com/issue/KTIJ-25347/K2-IDE.-Different-resolve-of-types-from-type-aliases-of-stdlib-jvm-comparing-to-K1
460
+ // .addExplicitDep(KOTLIN_STDLIB_DEP.singleCompileJar())
459
461
.buildSorted()
460
462
assertThat(jdeps).isEqualTo(expected)
461
463
}
You can’t perform that action at this time.
0 commit comments