Skip to content

Commit

Permalink
Update java test
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Aug 1, 2024
1 parent b1c6a5a commit 6e7c4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/test/java/ai/rapids/cudf/ReductionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ void testWithSetOutputType() {
assertEquals(expected, result);
}

try (Scalar expected = Scalar.fromFloat(1.666667f);
try (Scalar expected = Scalar.fromFloat(1.666666f);
ColumnVector cv = ColumnVector.fromBytes(new byte[]{1, 2, 3, 4});
Scalar result = cv.variance(DType.FLOAT32)) {
assertEquals(expected, result);
Expand Down

0 comments on commit 6e7c4a1

Please sign in to comment.