@@ -23,8 +23,8 @@ contract CounterTest is DeliveryHelperTest {
2323 contractIds[0 ] = counterId;
2424 }
2525
26- function deployCounterApp (uint32 chainSlug ) internal returns (bytes32 asyncId ) {
27- asyncId = _deploy (contractIds, chainSlug, 1 , IAppGateway (counterGateway));
26+ function deployCounterApp (uint32 chainSlug ) internal returns (uint40 requestCount ) {
27+ requestCount = _deploy (chainSlug, IAppGateway (counterGateway), contractIds );
2828 }
2929
3030 function testCounterDeployment () external {
@@ -49,8 +49,8 @@ contract CounterTest is DeliveryHelperTest {
4949 address [] memory instances = new address [](1 );
5050 instances[0 ] = arbCounterForwarder;
5151 counterGateway.incrementCounters (instances);
52+ executeRequest (new bytes [](0 ));
5253
53- _executeWriteBatchSingleChain (arbChainSlug, 1 );
5454 assertEq (Counter (arbCounter).counter (), arbCounterBefore + 1 );
5555 }
5656
@@ -75,8 +75,8 @@ contract CounterTest is DeliveryHelperTest {
7575 uint32 [] memory chains = new uint32 [](2 );
7676 chains[0 ] = arbChainSlug;
7777 chains[1 ] = optChainSlug;
78- _executeWriteBatchMultiChain (chains);
7978
79+ executeRequest (new bytes [](0 ));
8080 assertEq (Counter (arbCounter).counter (), arbCounterBefore + 1 );
8181 assertEq (Counter (optCounter).counter (), optCounterBefore + 1 );
8282 }
0 commit comments