From aa451778f96183b4ca4bcdf27a952dfc6fc80ccf Mon Sep 17 00:00:00 2001 From: protolambda Date: Thu, 20 Feb 2020 11:34:37 -0800 Subject: [PATCH] work in progress test improvements --- tests/core/pyspec/eth2spec/test/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/pyspec/eth2spec/test/context.py b/tests/core/pyspec/eth2spec/test/context.py index 543aa59c2..5338ccb9d 100644 --- a/tests/core/pyspec/eth2spec/test/context.py +++ b/tests/core/pyspec/eth2spec/test/context.py @@ -76,7 +76,7 @@ def default_balances(spec): Helper method to create a series of default balances. Usage: `@with_custom_state(balances_fn=default_balances, ...)` """ - num_validators = spec.SLOTS_PER_EPOCH * 256 + num_validators = spec.SLOTS_PER_EPOCH * 8 return [spec.MAX_EFFECTIVE_BALANCE] * num_validators