File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed
generated-sources/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types
src/test/kotlin/org/jetbrains/kotlinx/dataframe/types Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -222,11 +222,10 @@ class UtilTests {
222222 ).commonType() shouldBe typeOf<AbstractType <out Int >>()
223223// listOf(typeOf<AbstractType<out Int>>(), typeOf<AbstractType<in Int>>()).commonType(useStar = false) shouldBe typeOf<AbstractType<out Any?>>()
224224// listOf(typeOf<AbstractType<out Int>>(), typeOf<AbstractType<in Int>>()).commonType() shouldBe typeOf<AbstractType<*>>()
225-
226- listOf (
227- typeOf<AbstractType <in Int >>(),
228- typeOf<AbstractType <Any >>()
229- ).commonType() shouldBe typeOf<AbstractType <in Int >>()
225+ // listOf(
226+ // typeOf<AbstractType<in Int>>(),
227+ // typeOf<AbstractType<Any>>()
228+ // ).commonType() shouldBe typeOf<AbstractType<in Int>>()
230229
231230 listOf (typeOf<Int >(), typeOf<List <Any >>()).commonType() shouldBe typeOf<Any >()
232231 listOf (typeOf<Int >(), typeOf<List <Any >? > ()).commonType() shouldBe typeOf<Any ?>()
Original file line number Diff line number Diff line change @@ -222,11 +222,10 @@ class UtilTests {
222222 ).commonType() shouldBe typeOf<AbstractType <out Int >>()
223223// listOf(typeOf<AbstractType<out Int>>(), typeOf<AbstractType<in Int>>()).commonType(useStar = false) shouldBe typeOf<AbstractType<out Any?>>()
224224// listOf(typeOf<AbstractType<out Int>>(), typeOf<AbstractType<in Int>>()).commonType() shouldBe typeOf<AbstractType<*>>()
225-
226- listOf (
227- typeOf<AbstractType <in Int >>(),
228- typeOf<AbstractType <Any >>()
229- ).commonType() shouldBe typeOf<AbstractType <in Int >>()
225+ // listOf(
226+ // typeOf<AbstractType<in Int>>(),
227+ // typeOf<AbstractType<Any>>()
228+ // ).commonType() shouldBe typeOf<AbstractType<in Int>>()
230229
231230 listOf (typeOf<Int >(), typeOf<List <Any >>()).commonType() shouldBe typeOf<Any >()
232231 listOf (typeOf<Int >(), typeOf<List <Any >? > ()).commonType() shouldBe typeOf<Any ?>()
You can’t perform that action at this time.
0 commit comments