Skip to content

Commit

Permalink
ROS Audit: fix for sec. 3.5. Closes #14.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaker committed Oct 22, 2024
1 parent e6ee13f commit 666d702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nimue/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 666d702

Please sign in to comment.