From 65108aeee0936ba54661b3ddd3bdb48b10ed8315 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Mon, 11 May 2020 11:17:48 -0600 Subject: [PATCH] start on_block just slots test at time 0 --- tests/core/pyspec/eth2spec/test/fork_choice/test_on_block.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/core/pyspec/eth2spec/test/fork_choice/test_on_block.py b/tests/core/pyspec/eth2spec/test/fork_choice/test_on_block.py index 4438dff92..016326b30 100644 --- a/tests/core/pyspec/eth2spec/test/fork_choice/test_on_block.py +++ b/tests/core/pyspec/eth2spec/test/fork_choice/test_on_block.py @@ -184,7 +184,7 @@ def test_on_block_finalized_skip_slots_not_in_skip_chain(spec, state): def test_on_block_update_justified_checkpoint_within_safe_slots(spec, state): # Initialization store = spec.get_forkchoice_store(state) - time = 100 + time = 0 spec.on_tick(store, time) next_epoch(spec, state) @@ -215,7 +215,7 @@ def test_on_block_update_justified_checkpoint_within_safe_slots(spec, state): def test_on_block_outside_safe_slots_and_multiple_better_justified(spec, state): # Initialization store = spec.get_forkchoice_store(state) - time = 100 + time = 0 spec.on_tick(store, time) next_epoch(spec, state)