Skip to content

Commit

Permalink
Update core/src/test/java/tech/tablesaw/util/DoubleArraysTest.java
Browse files Browse the repository at this point in the history
Co-authored-by: Ben McCann <[email protected]>
  • Loading branch information
ccleva and benmccann authored Jan 3, 2025
1 parent eb7837c commit 549f037
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void testTo2dArray() throws Exception {
Table table = Table.read().csv("../data/tornadoes_1950-2014.csv");
TableSliceGroup tableSliceGroup = table.splitOn("Scale");
int columnNumber = table.columnIndex("Injuries");
final double[][] a2dArray = DoubleArrays.to2dArray(tableSliceGroup, columnNumber);
double[][] a2dArray = DoubleArrays.to2dArray(tableSliceGroup, columnNumber);
assertEquals(7, a2dArray.length, "Wrong Scale array length");
}

Expand Down

0 comments on commit 549f037

Please sign in to comment.