Skip to content

Commit

Permalink
fixes after updating foundry version
Browse files Browse the repository at this point in the history
  • Loading branch information
trajan0x committed Sep 4, 2023
1 parent 9a55835 commit b4b96aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/contracts-core/test/suite/inbox/Inbox.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ contract InboxTest is StatementInboxTest {

function test_constructor_revert_notOnSynapseChain(uint32 domain) public {
vm.assume(domain != DOMAIN_SYNAPSE);
vm.chainId(domain);
vm.expectRevert(MustBeSynapseDomain.selector);
new Inbox(domain);
new Inbox(DOMAIN_SYNAPSE);
}

function initializeLocalContract() public override {
Expand Down

0 comments on commit b4b96aa

Please sign in to comment.