Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
kosak committed Nov 8, 2024
1 parent 1ff6927 commit 122da6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/test/java/io/deephaven/csv/CsvReaderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2099,8 +2099,10 @@ public void fixedColumnWidthsIgnoreEmptyLines(boolean ignoreEmptyLines) throws C
expected = ColumnSet.of(
Column.ofRefs("Sym", "GOOG", null, null, "T", null, "Z"),
Column.ofRefs("Type", "Dividend", null, null, "Dividend", null, "Dividend"),
Column.ofValues("Price", 0.25, Sentinels.NULL_DOUBLE, Sentinels.NULL_DOUBLE, 0.15, Sentinels.NULL_DOUBLE, 0.18),
Column.ofValues("SecurityId", 200, Sentinels.NULL_INT, Sentinels.NULL_INT, 300, Sentinels.NULL_INT, 500));
Column.ofValues("Price", 0.25, Sentinels.NULL_DOUBLE, Sentinels.NULL_DOUBLE, 0.15,
Sentinels.NULL_DOUBLE, 0.18),
Column.ofValues("SecurityId", 200, Sentinels.NULL_INT, Sentinels.NULL_INT, 300, Sentinels.NULL_INT,
500));
}

final CsvSpecs specs = defaultCsvBuilder().hasFixedWidthColumns(true)
Expand Down

0 comments on commit 122da6c

Please sign in to comment.