Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Feb 12, 2024
1 parent 5fb57cd commit 6a68dea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/WormholeSender.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ contract UpdateGasLimit is WormholeSenderTest {
}

function testFuzz_RevertIf_CalledByNonOwner(address owner, uint256 gasLimit) public {
vm.expectRevert("Ownable: caller is not the owner");
vm.prank(owner);
wormholeSender.updateGasLimit(gasLimit);
}
Expand Down

0 comments on commit 6a68dea

Please sign in to comment.