Skip to content

Commit

Permalink
fixed merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
satyajeetkolhapure committed Nov 28, 2024
1 parent f7964f0 commit de93854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/test/PortalRegistry.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ contract PortalRegistryTest is Test {
}

function test_updateRouter_RouterAlreadyUpdated() public {
PortalRegistry testPortalRegistry = new PortalRegistry(false);
PortalRegistry testPortalRegistry = new PortalRegistry();
vm.expectEmit(true, true, true, true);
emit RouterUpdated(address(1));
vm.prank(address(0));
Expand Down Expand Up @@ -137,7 +137,7 @@ contract PortalRegistryTest is Test {
vm.expectRevert(PortalRegistry.IssuerAlreadySet.selector);
portalRegistry.setIssuer(issuerAddress);
}

function test_setIsTestnet() public {
PortalRegistry testnetPortalRegistry = new PortalRegistry();

Expand Down

0 comments on commit de93854

Please sign in to comment.