Skip to content

Commit 714bf3d

Browse files
committed
Set the number of trials back to 10,000
1 parent fbd8d0a commit 714bf3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decaf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ mod test {
671671
#[test]
672672
fn decaf_random_is_valid() {
673673
let mut rng = OsRng::new().unwrap();
674-
for _ in 0..100_000 {
674+
for _ in 0..10_000 {
675675
let P = DecafPoint::random(&mut rng);
676676
// Check that P is on the curve
677677
assert!(P.0.is_valid());

0 commit comments

Comments
 (0)