From 6266133572494b606e12db1326fa2ac597c215af Mon Sep 17 00:00:00 2001 From: Diederik Loerakker Date: Tue, 25 Jun 2019 03:53:40 +0200 Subject: [PATCH] rename test methods based on suggestion Co-Authored-By: Danny Ryan --- .../block_processing/test_process_attester_slashing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_libs/pyspec/eth2spec/test/phase_0/block_processing/test_process_attester_slashing.py b/test_libs/pyspec/eth2spec/test/phase_0/block_processing/test_process_attester_slashing.py index 2d8f9d31a..86b6811a2 100644 --- a/test_libs/pyspec/eth2spec/test/phase_0/block_processing/test_process_attester_slashing.py +++ b/test_libs/pyspec/eth2spec/test/phase_0/block_processing/test_process_attester_slashing.py @@ -156,7 +156,7 @@ def test_custody_bit_0_and_1_intersect(spec, state): @with_all_phases @spec_state_test -def test_attester_slashing_invalid_att_1(spec, state): +def test_unsorted_att_1(spec, state): attester_slashing = get_valid_attester_slashing(spec, state, signed_1=False, signed_2=True) indices = attester_slashing.attestation_1.custody_bit_0_indices @@ -169,7 +169,7 @@ def test_attester_slashing_invalid_att_1(spec, state): @with_all_phases @spec_state_test -def test_attester_slashing_invalid_att_2(spec, state): +def test_unsorted_att_2(spec, state): attester_slashing = get_valid_attester_slashing(spec, state, signed_1=True, signed_2=False) indices = attester_slashing.attestation_2.custody_bit_0_indices