From de93854a43deb885ca1de35102cd12c7966de95c Mon Sep 17 00:00:00 2001 From: Satyajeet Kolhapure Date: Thu, 28 Nov 2024 11:09:57 +0000 Subject: [PATCH] fixed merge issue --- contracts/test/PortalRegistry.t.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/test/PortalRegistry.t.sol b/contracts/test/PortalRegistry.t.sol index 0b94c6f9..eba25961 100644 --- a/contracts/test/PortalRegistry.t.sol +++ b/contracts/test/PortalRegistry.t.sol @@ -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)); @@ -137,7 +137,7 @@ contract PortalRegistryTest is Test { vm.expectRevert(PortalRegistry.IssuerAlreadySet.selector); portalRegistry.setIssuer(issuerAddress); } - + function test_setIsTestnet() public { PortalRegistry testnetPortalRegistry = new PortalRegistry();