File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed
tests/prague/eip6110_deposits Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 7171
7272
7373@pytest .mark .parametrize (
74- "include_deposit_event" ,
74+ "include_deposit_event,extra_event_type " ,
7575 [
7676 pytest .param (
7777 True ,
78+ "transfer_log" ,
7879 marks = pytest .mark .pre_alloc_group (
79- "deposit_extra_logs_with_event " ,
80+ "deposit_extra_logs_with_event_transfer " ,
8081 reason = "Deposit contract with Transfer log AND deposit event" ,
8182 ),
8283 ),
84+ pytest .param (
85+ True ,
86+ "no_topics" ,
87+ marks = pytest .mark .pre_alloc_group (
88+ "deposit_extra_logs_with_event_no_topics" ,
89+ reason = "Deposit contract with no-topics log AND deposit event" ,
90+ ),
91+ ),
8392 pytest .param (
8493 False ,
94+ "transfer_log" ,
8595 marks = pytest .mark .pre_alloc_group (
86- "deposit_extra_logs_no_event " ,
96+ "deposit_extra_logs_no_event_transfer " ,
8797 reason = "Deposit contract with Transfer log NO deposit event" ,
8898 ),
8999 ),
100+ pytest .param (
101+ False ,
102+ "no_topics" ,
103+ marks = pytest .mark .pre_alloc_group (
104+ "deposit_extra_logs_no_event_no_topics" ,
105+ reason = "Deposit contract with no-topics log NO deposit event" ,
106+ ),
107+ ),
90108 ],
91109)
92110def test_extra_logs (
You can’t perform that action at this time.
0 commit comments