From 714bf3dd0713adb09a9300a0dde8ab6db9067c91 Mon Sep 17 00:00:00 2001 From: Henry de Valence Date: Fri, 19 May 2017 13:44:20 -0700 Subject: [PATCH] Set the number of trials back to 10,000 --- src/decaf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/decaf.rs b/src/decaf.rs index 749d218..e5a6c45 100644 --- a/src/decaf.rs +++ b/src/decaf.rs @@ -671,7 +671,7 @@ mod test { #[test] fn decaf_random_is_valid() { let mut rng = OsRng::new().unwrap(); - for _ in 0..100_000 { + for _ in 0..10_000 { let P = DecafPoint::random(&mut rng); // Check that P is on the curve assert!(P.0.is_valid());