Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes committed Nov 8, 2023
1 parent 22dc6f1 commit 80acbf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions solidity/test/router.t.sol → solidity/test/Router.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import "forge-std/Test.sol";
import {TestRouter} from "../contracts/test/TestRouter.sol";
import {TestMailbox} from "../contracts/test/TestMailbox.sol";
import {TestInterchainGasPaymaster} from "../contracts/test/TestInterchainGasPaymaster.sol";
import {TestMultisigIsm} from "../contracts/test/TestMultisigIsm.sol";
import {TestIsm} from "../contracts/test/TestIsm.sol";
import {TestMerkleTreeHook} from "../contracts/test/TestMerkleTreeHook.sol";
import {TypeCasts} from "../contracts/libs/TypeCasts.sol";

Expand All @@ -14,7 +14,7 @@ contract RouterTest is Test {
TestMailbox mailbox;
TestInterchainGasPaymaster igp;
TestMerkleTreeHook requiredHook;
TestMultisigIsm ism;
TestIsm ism;

uint32 localDomain = 1000;
uint32 origin = 1;
Expand All @@ -33,7 +33,7 @@ contract RouterTest is Test {
mailbox = new TestMailbox(localDomain);
igp = new TestInterchainGasPaymaster();
router = new TestRouter(address(mailbox));
ism = new TestMultisigIsm();
ism = new TestIsm();
requiredHook = new TestMerkleTreeHook(address(mailbox));

mailbox.initialize(
Expand Down

0 comments on commit 80acbf4

Please sign in to comment.