diff --git a/nimue/src/tests.rs b/nimue/src/tests.rs index 9c3bfb6..ddab98a 100644 --- a/nimue/src/tests.rs +++ b/nimue/src/tests.rs @@ -109,7 +109,7 @@ fn test_statistics() { // each element should appear roughly 8 times on average. Checking we're not too far from that. assert!(frequencies .iter() - .all(|&x| x < frequencies[0] + 16 && x > 0)); + .all(|&x| x < 32 && x > 0)); } #[test]