Skip to content

Commit

Permalink
Fix a typo that made tests fail
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Apr 30, 2021
1 parent 976b18f commit 4321a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/mean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ fn simple_rayon() {
assert_eq!(a.mean(), 3.0);
assert_eq!(a.len(), 5);
assert_eq!(a.sample_variance(), 2.5);
assert_eq!(c.variance_of_mean(), 0.5);
assert_eq!(a.variance_of_mean(), 0.5);
#[cfg(any(feature = "std", feature = "libm"))]
assert_almost_eq!(a.error(), f64::sqrt(0.5), 1e-16);
}
Expand Down

0 comments on commit 4321a5f

Please sign in to comment.