From d4757f2e09f08901e723865c85d050b6c6b65e38 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 1 Feb 2019 15:39:30 +1100 Subject: [PATCH] Drop test repetitions down to 100 --- beacon_node/beacon_chain/test_harness/tests/chain.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/beacon_chain/test_harness/tests/chain.rs b/beacon_node/beacon_chain/test_harness/tests/chain.rs index ece9bd3401..f841575331 100644 --- a/beacon_node/beacon_chain/test_harness/tests/chain.rs +++ b/beacon_node/beacon_chain/test_harness/tests/chain.rs @@ -24,7 +24,7 @@ fn it_can_build_on_genesis_block() { fn it_can_produce_past_first_epoch_boundary() { Builder::from_env(Env::default().default_filter_or("debug")).init(); - let validator_count = 128 * 1024; + let validator_count = 100; debug!("Starting harness build...");