@@ -101,8 +101,7 @@ async fn test_l1_sync_batch_commit() -> eyre::Result<()> {
101101 let mut fixture = TestFixture :: builder ( )
102102 . followers ( 1 )
103103 . skip_l1_synced_notifications ( ) // Prevents automatic L1Synced, simulates initial sync
104- . with_anvil ( )
105- . with_anvil_chain_id ( 22222222 )
104+ . with_anvil ( None , Some ( 22222222 ) , None )
106105 . build ( )
107106 . await ?;
108107
@@ -171,8 +170,7 @@ async fn test_l1_sync_batch_finalized() -> eyre::Result<()> {
171170 let mut fixture = TestFixture :: builder ( )
172171 . followers ( 1 )
173172 . skip_l1_synced_notifications ( )
174- . with_anvil ( )
175- . with_anvil_chain_id ( 22222222 )
173+ . with_anvil ( None , Some ( 22222222 ) , None )
176174 . build ( )
177175 . await ?;
178176
@@ -295,8 +293,7 @@ async fn test_l1_sync_batch_revert() -> eyre::Result<()> {
295293 let mut fixture = TestFixture :: builder ( )
296294 . followers ( 1 )
297295 . skip_l1_synced_notifications ( )
298- . with_anvil ( )
299- . with_anvil_chain_id ( 22222222 )
296+ . with_anvil ( None , Some ( 22222222 ) , None )
300297 . build ( )
301298 . await ?;
302299
@@ -370,8 +367,7 @@ async fn test_l1_reorg_batch_commit() -> eyre::Result<()> {
370367 let mut fixture = TestFixture :: builder ( )
371368 . followers ( 1 )
372369 . skip_l1_synced_notifications ( )
373- . with_anvil ( )
374- . with_anvil_chain_id ( 22222222 )
370+ . with_anvil ( None , Some ( 22222222 ) , None )
375371 . build ( )
376372 . await ?;
377373
@@ -454,8 +450,7 @@ async fn test_l1_reorg_batch_finalized() -> eyre::Result<()> {
454450 let mut fixture = TestFixture :: builder ( )
455451 . followers ( 1 )
456452 . skip_l1_synced_notifications ( )
457- . with_anvil ( )
458- . with_anvil_chain_id ( 22222222 )
453+ . with_anvil ( None , Some ( 22222222 ) , None )
459454 . build ( )
460455 . await ?;
461456
@@ -534,8 +529,7 @@ async fn test_l1_reorg_batch_revert() -> eyre::Result<()> {
534529 let mut fixture = TestFixture :: builder ( )
535530 . followers ( 1 )
536531 . skip_l1_synced_notifications ( )
537- . with_anvil ( )
538- . with_anvil_chain_id ( 22222222 )
532+ . with_anvil ( None , Some ( 22222222 ) , None )
539533 . build ( )
540534 . await ?;
541535
0 commit comments