From 666d70231e4a4fc227fccfa079731929f968bfd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michele=20Orr=C3=B9?= Date: Tue, 22 Oct 2024 15:49:51 +0200 Subject: [PATCH] ROS Audit: fix for sec. 3.5. Closes #14. --- nimue/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]