From 3ab3106a2f783c1f8ef411cb66a3d1c629522e58 Mon Sep 17 00:00:00 2001 From: teddy Date: Mon, 22 Jul 2024 14:52:54 -0300 Subject: [PATCH] fix: make bulloak happy --- 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 74dd75ce..2318bd16 100644 --- a/test/unit/BCoWPool/BCoWPool.t.sol +++ b/test/unit/BCoWPool/BCoWPool.t.sol @@ -27,7 +27,7 @@ contract BCoWPool is BCoWPoolBase { vm.mockCall(tokens[1], abi.encodeCall(IERC20.approve, (vaultRelayer, type(uint256).max)), abi.encode(true)); } - function test__afterFinalizeWhenPreconditionsAreMet() external { + function test__afterFinalizeWhenCalled() external { // it calls approve on every bound token vm.expectCall(tokens[0], abi.encodeCall(IERC20.approve, (vaultRelayer, type(uint256).max))); vm.expectCall(tokens[1], abi.encodeCall(IERC20.approve, (vaultRelayer, type(uint256).max)));