We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99a96f4 commit 04020b8Copy full SHA for 04020b8
library/std/tests/floats/f16.rs
@@ -961,7 +961,7 @@ fn test_algebraic() {
961
962
assert_approx_eq!(a.algebraic_add(b), a + b, 1e1);
963
assert_approx_eq!(a.algebraic_sub(b), a - b, 1e1);
964
- assert_approx_eq!(a.algebraic_mul(b), a * b, 1e2);
+ assert_approx_eq!(a.algebraic_mul(b), a * b, 1e3);
965
assert_approx_eq!(a.algebraic_div(b), a / b, 1e0);
966
assert_approx_eq!(a.algebraic_rem(b), a % b, 1e0);
967
}
0 commit comments