fix mismatched proposer test names

This commit is contained in:
Danny Ryan 2021-06-09 16:31:20 -06:00
parent a553e3b18e
commit 1ade07d705
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A
1 changed files with 8 additions and 8 deletions

View File

@ -35,6 +35,14 @@ def run_proposer_slashing_processing(spec, state, proposer_slashing, valid=True)
@with_all_phases @with_all_phases
@spec_state_test @spec_state_test
def test_success(spec, state): def test_success(spec, state):
proposer_slashing = get_valid_proposer_slashing(spec, state, signed_1=True, signed_2=True)
yield from run_proposer_slashing_processing(spec, state, proposer_slashing)
@with_all_phases
@spec_state_test
def test_success_slashed_and_proposer_index_the_same(spec, state):
# Get proposer for next slot # Get proposer for next slot
block = build_empty_block_for_next_slot(spec, state) block = build_empty_block_for_next_slot(spec, state)
proposer_index = block.proposer_index proposer_index = block.proposer_index
@ -47,14 +55,6 @@ def test_success(spec, state):
yield from run_proposer_slashing_processing(spec, state, proposer_slashing) yield from run_proposer_slashing_processing(spec, state, proposer_slashing)
@with_all_phases
@spec_state_test
def test_success_slashed_and_proposer_index_the_same(spec, state):
proposer_slashing = get_valid_proposer_slashing(spec, state, signed_1=True, signed_2=True)
yield from run_proposer_slashing_processing(spec, state, proposer_slashing)
@with_all_phases @with_all_phases
@spec_state_test @spec_state_test
@always_bls @always_bls