From b72ca93a572195fe8c58a624b98e76bac48ebbee Mon Sep 17 00:00:00 2001 From: Chef Snoopy Date: Thu, 25 Apr 2024 18:28:31 +0800 Subject: [PATCH] feat: Update test cases --- test/pool-cl/CLPoolManager.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pool-cl/CLPoolManager.t.sol b/test/pool-cl/CLPoolManager.t.sol index 37a4bcb1..4405ccd4 100644 --- a/test/pool-cl/CLPoolManager.t.sol +++ b/test/pool-cl/CLPoolManager.t.sol @@ -116,7 +116,7 @@ contract CLPoolManagerTest is Test, Deployers, TokenFixture, GasSnapshot { (uint160 sqrtPriceX96, int24 tick, uint16 protocolFee, uint24 swapFee) = poolManager.getSlot0(id); assertEq(poolInfo.sqrtPriceX96, sqrtPriceX96); assertEq(poolInfo.tick, tick); - assertEq(poolInfo.sqrtPriceX96, sqrtPriceX96); + assertEq(poolInfo.protocolFee, protocolFee); assertEq(poolInfo.swapFee, swapFee); (, uint256 feeGrowthGlobal0X128, uint256 feeGrowthGlobal1X128, uint128 liquidity) = poolManager.pools(id);