You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@motlin , I think the test failure you're encountering in the ParallelIterableTestCase#sumOfFloatConsistentRounding is related to floating-point precision. The error message shows that the expected result is <5.0000000000000995>, but the actual result was <5.000000000000101>. This difference is very small and falls within a "flaky test" range
because it depends on how floating-point arithmetic is handled internally, which can vary slightly across platforms or when using parallel processing.
This test sometimes fails with a delta greater than the allowed delta.
The test:
The text was updated successfully, but these errors were encountered: