diff --git a/test/foundry/unit/ExocoreGateway.t.sol b/test/foundry/unit/ExocoreGateway.t.sol index 0ec829ae..c6c9c24c 100644 --- a/test/foundry/unit/ExocoreGateway.t.sol +++ b/test/foundry/unit/ExocoreGateway.t.sol @@ -903,10 +903,10 @@ contract MarkBootstrap is SetUp { function test_Success_Multiple() public { _registerClientChain(); vm.startPrank(exocoreValidatorSet.addr); - // vm.expectEmit(address(exocoreGateway)); - // emit ExocoreGatewayStorage.BootstrapRequestSent(clientChainId); - // vm.expectEmit(address(exocoreGateway)); - // emit ExocoreGatewayStorage.BootstrapRequestSent(anotherClientChainId); + vm.expectEmit(address(exocoreGateway)); + emit ExocoreGatewayStorage.BootstrapRequestSent(clientChainId); + vm.expectEmit(address(exocoreGateway)); + emit ExocoreGatewayStorage.BootstrapRequestSent(anotherClientChainId); assertEq(exocoreGateway.chainToBootstrapped(clientChainId), false); assertEq(exocoreGateway.chainToBootstrapped(anotherClientChainId), false); exocoreGateway.markBootstrapOnAllChains();