File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed
tests/prague/eip7702_set_code_tx Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -205,27 +205,14 @@ def test_set_code_to_sstore(
205
205
)
206
206
207
207
208
- @pytest .mark .parametrize (
209
- "auth_signer_nonce" ,
210
- [
211
- pytest .param (
212
- 0 ,
213
- id = "zero_nonce" ,
214
- marks = pytest .mark .execute (pytest .mark .skip ("unrealistic scenario" )),
215
- ),
216
- pytest .param (None , id = "non_zero_nonce" ),
217
- ],
218
- )
219
- def test_set_code_to_non_empty_storage (
208
+ def test_set_code_to_non_empty_storage_non_zero_nonce (
220
209
state_test : StateTestFiller ,
221
210
pre : Alloc ,
222
- auth_signer_nonce : int ,
223
211
):
224
212
"""Test the setting the code to an account that has non-empty storage."""
225
213
auth_signer = pre .fund_eoa (
226
214
amount = 0 ,
227
215
storage = Storage ({0 : 1 }), # type: ignore
228
- nonce = auth_signer_nonce ,
229
216
)
230
217
sender = pre .fund_eoa ()
231
218
You can’t perform that action at this time.
0 commit comments