Skip to content

Commit 7a2c513

Browse files
committed
fix unused it
1 parent d72e41d commit 7a2c513

File tree

1 file changed

+1
-1
lines changed
  • core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/testSets/person

1 file changed

+1
-1
lines changed

core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/testSets/person/DataFrameTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ class DataFrameTests : BaseTest() {
552552

553553
@Test
554554
fun `drop nulls 1`() {
555-
fun AnyFrame.check() = rows().forEach { get("weight") shouldNotBe null }
555+
fun AnyFrame.check() = rows().forEach { it["weight"] shouldNotBe null }
556556

557557
typed.dropNulls(typed.weight).check()
558558
typed.dropNulls { weight }.check()

0 commit comments

Comments
 (0)