diff --git a/contracts/test/AccountLiquidityTest.t.sol b/contracts/test/AccountLiquidityTest.t.sol index b9e88ae5..c4411b10 100644 --- a/contracts/test/AccountLiquidityTest.t.sol +++ b/contracts/test/AccountLiquidityTest.t.sol @@ -80,4 +80,4 @@ contract AccountLiquidityTest is UpgradesBaseTest { // liquidated at 5890902 // https://explorer.mode.network/tx/0x424fd0504e7afb00382c6dcd25a2efdefd96c005c2333112be450fc7bd98cc88 } -} \ No newline at end of file +} diff --git a/contracts/test/DevTesting.t.sol b/contracts/test/DevTesting.t.sol index 8041d37b..c2ba32d1 100644 --- a/contracts/test/DevTesting.t.sol +++ b/contracts/test/DevTesting.t.sol @@ -441,7 +441,8 @@ contract DevTesting is BaseTest { ERC20(WETH).allowance(caller, target); - bytes memory data = hex"534da46000000000000000000000000071ef7eda2be775e5a7aa8afd02c45f059833e9d20000000000000000000000002be717340023c9e14c1bb12cb3ecbcfd3c3fb0380000000000000000000000004200000000000000000000000000000000000006000000000000000000000000000000000000000000000000001329713137a5260000000000000000000000000000000000000000000000000000000000000001"; + bytes + memory data = hex"534da46000000000000000000000000071ef7eda2be775e5a7aa8afd02c45f059833e9d20000000000000000000000002be717340023c9e14c1bb12cb3ecbcfd3c3fb0380000000000000000000000004200000000000000000000000000000000000006000000000000000000000000000000000000000000000000001329713137a5260000000000000000000000000000000000000000000000000000000000000001"; vm.prank(caller); _functionCall(target, data, "raw call failed"); } diff --git a/contracts/test/liquidators/UniswapV3LiquidatorTest.t.sol b/contracts/test/liquidators/UniswapV3LiquidatorTest.t.sol index 26cf0eec..76fa3b99 100644 --- a/contracts/test/liquidators/UniswapV3LiquidatorTest.t.sol +++ b/contracts/test/liquidators/UniswapV3LiquidatorTest.t.sol @@ -106,19 +106,11 @@ contract UniswapV3LiquidatorTest is IonicLiquidatorTest { emit log_named_uint("feeConfig", feeConfig); if (feeConfig == 0) { - pool = factory.getPool( - wethAddr, - usdcAddr, - uint24(feeConfig) - ); + pool = factory.getPool(wethAddr, usdcAddr, uint24(feeConfig)); emit log_named_address("Pool at fee 0", pool); } - pool = factory.getPool( - wethAddr, - usdcAddr, - 500 - ); + pool = factory.getPool(wethAddr, usdcAddr, 500); emit log_named_address("Pool at fee 500", pool); } }