From a03bad2cbf1f35576fdf341deeae3c1d073828e6 Mon Sep 17 00:00:00 2001 From: CheyenneAtapour Date: Thu, 11 Jul 2024 13:48:41 -0700 Subject: [PATCH] chore: prettier --- contracts/src/v0.8/ccip/test/BaseTest.t.sol | 3 --- .../src/v0.8/ccip/test/pools/GHO/GhoTokenPoolRemote.t.sol | 6 +----- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/contracts/src/v0.8/ccip/test/BaseTest.t.sol b/contracts/src/v0.8/ccip/test/BaseTest.t.sol index 0dd265092b..ad7cf3a2a1 100644 --- a/contracts/src/v0.8/ccip/test/BaseTest.t.sol +++ b/contracts/src/v0.8/ccip/test/BaseTest.t.sol @@ -8,7 +8,6 @@ import {StdUtils} from "forge-std/StdUtils.sol"; import {MockARM} from "./mocks/MockARM.sol"; import {StructFactory} from "./StructFactory.sol"; - contract BaseTest is Test, StructFactory { bool private s_baseTestInitialized; @@ -30,6 +29,4 @@ contract BaseTest is Test, StructFactory { s_mockARM = new MockARM(); } - - } diff --git a/contracts/src/v0.8/ccip/test/pools/GHO/GhoTokenPoolRemote.t.sol b/contracts/src/v0.8/ccip/test/pools/GHO/GhoTokenPoolRemote.t.sol index 58a99f253d..78d94e82c7 100644 --- a/contracts/src/v0.8/ccip/test/pools/GHO/GhoTokenPoolRemote.t.sol +++ b/contracts/src/v0.8/ccip/test/pools/GHO/GhoTokenPoolRemote.t.sol @@ -355,11 +355,7 @@ contract GhoTokenPoolRemote_setChainRateLimiterConfig is GhoTokenPoolRemoteSetup vm.expectRevert(abi.encodeWithSelector(UpgradeableTokenPool.NonExistentChain.selector, wrongChainSelector)); changePrank(AAVE_DAO); - s_pool.setChainRateLimiterConfig( - wrongChainSelector, - getOutboundRateLimiterConfig(), - getInboundRateLimiterConfig() - ); + s_pool.setChainRateLimiterConfig(wrongChainSelector, getOutboundRateLimiterConfig(), getInboundRateLimiterConfig()); } }