mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-28 08:37:59 -05:00
ci: decrease proptest cases for trie::arbitrary (#1266)
This commit is contained in:
@@ -366,6 +366,7 @@ impl DBTrieLoader {
|
||||
mod tests {
|
||||
use super::*;
|
||||
use assert_matches::assert_matches;
|
||||
use proptest::{prelude::ProptestConfig, proptest};
|
||||
use reth_db::{mdbx::test_utils::create_test_rw_db, tables, transaction::DbTxMut};
|
||||
use reth_primitives::{
|
||||
hex_literal::hex,
|
||||
@@ -623,7 +624,7 @@ mod tests {
|
||||
|
||||
#[test]
|
||||
fn arbitrary() {
|
||||
proptest::proptest!(|(accounts: BTreeMap<Address, (Account, BTreeSet<StorageEntry>)>)| {
|
||||
proptest!(ProptestConfig::with_cases(10), |(accounts: BTreeMap<Address, (Account, BTreeSet<StorageEntry>)>)| {
|
||||
test_with_accounts(accounts);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user