@@ -32,10 +32,6 @@ def run_test_activation_queue_eligibility(spec, state, validator_index, balance)
3232@with_electra_and_later
3333@spec_state_test
3434def test_activation_queue_eligibility__less_than_min_activation_balance (spec , state ):
35- # move past first two irregular epochs wrt finality
36- next_epoch (spec , state )
37- next_epoch (spec , state )
38-
3935 index = 3
4036 balance = spec .MIN_ACTIVATION_BALANCE - spec .EFFECTIVE_BALANCE_INCREMENT
4137 yield from run_test_activation_queue_eligibility (spec , state , index , balance )
@@ -44,10 +40,6 @@ def test_activation_queue_eligibility__less_than_min_activation_balance(spec, st
4440@with_electra_and_later
4541@spec_state_test
4642def test_activation_queue_eligibility__min_activation_balance (spec , state ):
47- # move past first two irregular epochs wrt finality
48- next_epoch (spec , state )
49- next_epoch (spec , state )
50-
5143 index = 5
5244 balance = spec .MIN_ACTIVATION_BALANCE
5345 yield from run_test_activation_queue_eligibility (spec , state , index , balance )
@@ -56,10 +48,6 @@ def test_activation_queue_eligibility__min_activation_balance(spec, state):
5648@with_electra_and_later
5749@spec_state_test
5850def test_activation_queue_eligibility__min_activation_balance_eth1_creds (spec , state ):
59- # move past first two irregular epochs wrt finality
60- next_epoch (spec , state )
61- next_epoch (spec , state )
62-
6351 index = 7
6452 balance = spec .MIN_ACTIVATION_BALANCE
6553 set_eth1_withdrawal_credential_with_balance (spec , state , index )
@@ -69,10 +57,6 @@ def test_activation_queue_eligibility__min_activation_balance_eth1_creds(spec, s
6957@with_electra_and_later
7058@spec_state_test
7159def test_activation_queue_eligibility__min_activation_balance_compounding_creds (spec , state ):
72- # move past first two irregular epochs wrt finality
73- next_epoch (spec , state )
74- next_epoch (spec , state )
75-
7660 index = 11
7761 balance = spec .MIN_ACTIVATION_BALANCE
7862 set_compounding_withdrawal_credential_with_balance (spec , state , index )
@@ -82,10 +66,6 @@ def test_activation_queue_eligibility__min_activation_balance_compounding_creds(
8266@with_electra_and_later
8367@spec_state_test
8468def test_activation_queue_eligibility__greater_than_min_activation_balance (spec , state ):
85- # move past first two irregular epochs wrt finality
86- next_epoch (spec , state )
87- next_epoch (spec , state )
88-
8969 index = 13
9070 balance = spec .MIN_ACTIVATION_BALANCE + spec .EFFECTIVE_BALANCE_INCREMENT
9171 set_compounding_withdrawal_credential_with_balance (spec , state , index )
0 commit comments