Skip to content

Commit

Permalink
Updated test to account for no automatic missing value conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalladino committed Jan 30, 2024
1 parent 6c9023e commit 26e28ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/test/java/tech/tablesaw/io/csv/CsvReaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,9 @@ void testWithMissingValues() throws IOException {
void testWithMissingValue2() throws IOException {

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

@Test
Expand Down

0 comments on commit 26e28ac

Please sign in to comment.