Skip to content

Commit

Permalink
Set the number of trials back to 10,000
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed May 19, 2017
1 parent fbd8d0a commit 714bf3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decaf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 714bf3d

Please sign in to comment.