Drop proptest space size to reduce test runtime.

This commit is contained in:
Kris Nuttycombe 2021-05-18 15:52:42 -06:00
parent 38b864c100
commit dac68ce2aa
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ proptest! {
}
proptest! {
#![proptest_config(ProptestConfig::with_cases(20))]
#![proptest_config(ProptestConfig::with_cases(10))]
#[test]
fn tx_serialization_roundtrip_canopy(tx in arb_tx(BranchId::Canopy)) {
check_roundtrip(BranchId::Canopy, tx)?;
@ -93,7 +93,7 @@ proptest! {
}
proptest! {
#![proptest_config(ProptestConfig::with_cases(20))]
#![proptest_config(ProptestConfig::with_cases(10))]
#[test]
fn tx_serialization_roundtrip_nu5(tx in arb_tx(BranchId::Nu5)) {
check_roundtrip(BranchId::Nu5, tx)?;