Skip to content

Commit

Permalink
Change NA to N/A in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalladino committed Jan 30, 2024
1 parent c7c427e commit 8134ec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/test/java/tech/tablesaw/api/TableTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ void melt() {
+ LINE_END
+ "John Smith, 1, 33, 90, 1.87"
+ LINE_END
+ "Mary Smith, 1, NA, NA, 1.54";
+ "Mary Smith, 1, N/A, N/A, 1.54";
StringReader reader = new StringReader(df);
Table t = Table.read().csv(reader);
t.columnNames();
Expand Down Expand Up @@ -521,7 +521,7 @@ void meltAndDropMissing() throws Exception {
+ LINE_END
+ "John Smith, 1, 33, 90, 1.87"
+ LINE_END
+ "Mary Smith, 1, NA, NA, 1.54";
+ "Mary Smith, 1, N/A, N/A, 1.54";
StringReader reader = new StringReader(df);
Table t = Table.read().csv(reader);
t.columnNames();
Expand Down

0 comments on commit 8134ec0

Please sign in to comment.