Skip to content

Commit 122da6c

Browse files
committed
spotless
1 parent 1ff6927 commit 122da6c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/java/io/deephaven/csv/CsvReaderTest.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -2099,8 +2099,10 @@ public void fixedColumnWidthsIgnoreEmptyLines(boolean ignoreEmptyLines) throws C
20992099
expected = ColumnSet.of(
21002100
Column.ofRefs("Sym", "GOOG", null, null, "T", null, "Z"),
21012101
Column.ofRefs("Type", "Dividend", null, null, "Dividend", null, "Dividend"),
2102-
Column.ofValues("Price", 0.25, Sentinels.NULL_DOUBLE, Sentinels.NULL_DOUBLE, 0.15, Sentinels.NULL_DOUBLE, 0.18),
2103-
Column.ofValues("SecurityId", 200, Sentinels.NULL_INT, Sentinels.NULL_INT, 300, Sentinels.NULL_INT, 500));
2102+
Column.ofValues("Price", 0.25, Sentinels.NULL_DOUBLE, Sentinels.NULL_DOUBLE, 0.15,
2103+
Sentinels.NULL_DOUBLE, 0.18),
2104+
Column.ofValues("SecurityId", 200, Sentinels.NULL_INT, Sentinels.NULL_INT, 300, Sentinels.NULL_INT,
2105+
500));
21042106
}
21052107

21062108
final CsvSpecs specs = defaultCsvBuilder().hasFixedWidthColumns(true)

0 commit comments

Comments
 (0)