Skip to content

Commit

Permalink
Correct variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
ccleva committed Jan 3, 2025
1 parent a0c3e27 commit 2b503a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/test/java/tech/tablesaw/util/DoubleArraysTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ 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[][] _2dArray = DoubleArrays.to2dArray(tableSliceGroup, columnNumber);
assertEquals(7, _2dArray.length, "Wrong Scale array length");
final double[][] a2dArray = DoubleArrays.to2dArray(tableSliceGroup, columnNumber);
assertEquals(7, a2dArray.length, "Wrong Scale array length");
}

@Test
Expand Down

0 comments on commit 2b503a3

Please sign in to comment.