From 4967b34e5b7520eb2bbb492f6ef40de15d35d86a Mon Sep 17 00:00:00 2001 From: teddy Date: Mon, 22 Jul 2024 16:25:00 -0300 Subject: [PATCH] fix: mergeback mistake --- test/unit/BCoWPool/BCoWPool.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/BCoWPool/BCoWPool.t.sol b/test/unit/BCoWPool/BCoWPool.t.sol index b8cc5491..66d4a825 100644 --- a/test/unit/BCoWPool/BCoWPool.t.sol +++ b/test/unit/BCoWPool/BCoWPool.t.sol @@ -59,7 +59,7 @@ contract BCoWPool is BCoWPoolBase { vm.expectCall(tokens[1], abi.encodeCall(IERC20.approve, (vaultRelayer, type(uint256).max))); // it calls logBCoWPool on the factory vm.expectCall(address(this), abi.encodeCall(IBCoWFactory.logBCoWPool, ())); - bCoWPool.finalize(); + bCoWPool.call__afterFinalize(); } function test__afterFinalizeWhenFactorysLogBCoWPoolDoesNotRevert() external {