Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
chore(proptest) Make input explicit any::<u64>
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Nov 5, 2020
1 parent 4dfd981 commit 777fac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/consensus/dkg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ mod tests {
// Expect the session to successfully complete without timed transitions.
// NOTE: `seed` is for seeding the rng that randomizes the message order.
#[test]
fn proptest_full_participation(peers in arbitrary_elder_peers(), seed: u64) {
fn proptest_full_participation(peers in arbitrary_elder_peers(), seed in any::<u64>()) {
proptest_full_participation_impl(peers, seed)
}
}
Expand Down

0 comments on commit 777fac8

Please sign in to comment.