Skip to content

Commit 7d3c6e3

Browse files
author
LukeMathWalker
committed
Drop noisy_floats dev dependency
1 parent 47f309a commit 7d3c6e3

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ defmac = "0.2"
4848
quickcheck = { version = "0.7.2", default-features = false }
4949
rawpointer = "0.1"
5050
approx = "0.3"
51-
noisy_float = "0.1.8"
5251

5352
[features]
5453
# Enable blas usage

tests/numeric.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ fn test_mean_with_empty_array_of_floats() {
1717
assert!(a.mean().is_none());
1818
}
1919

20-
#[test]
21-
fn test_mean_with_empty_array_of_noisy_floats() {
22-
let a: Array1<N64> = array![];
23-
assert!(a.mean().is_none());
24-
}
25-
2620
#[test]
2721
fn test_mean_with_array_of_floats() {
2822
let a: Array1<f64> = array![

0 commit comments

Comments
 (0)