Fix float eq check

This commit is contained in:
David Peter 2021-08-24 21:50:31 +02:00 committed by David Peter
parent 9d61130b44
commit 8618c86421

View File

@ -137,8 +137,8 @@ pub fn write_benchmark_comparison(results: &[BenchmarkResult]) {
#[test]
fn test_max() {
let assert_float_eq = |a, b| {
assert!((a - b) < f64::EPSILON);
let assert_float_eq = |a: f64, b: f64| {
assert!((a - b).abs() < f64::EPSILON);
};
assert_float_eq(1.0, max(&[1.0]));