Skip to content

Commit

Permalink
Update missing value test
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalladino committed Jan 30, 2024
1 parent eebad96 commit e095f46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/test/java/tech/tablesaw/io/csv/CsvReaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ void testWithMissingValues() throws IOException {
void testWithMissingValue2() throws IOException {

Table t = Table.read().csv("../data/missing_values2.csv");
assertEquals(0, t.stringColumn(0).countMissing());
assertEquals(1, t.stringColumn(0).countMissing());
assertEquals(0, t.numberColumn(1).countMissing());
assertEquals(0, t.numberColumn(2).countMissing());
}
Expand Down

0 comments on commit e095f46

Please sign in to comment.