Skip to content

Commit

Permalink
Updated expected value in test
Browse files Browse the repository at this point in the history
The computed result is now more accurate.
  • Loading branch information
wence- committed Oct 1, 2024
1 parent 06fc222 commit 99ac7c7
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 @@ -618,7 +618,7 @@ void testWithSetOutputType() {
assertEquals(expected, result);
}

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

0 comments on commit 99ac7c7

Please sign in to comment.