From 4bea615f8b3095d7fad763e7ba7facd5164337aa Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Fri, 27 Jun 2025 20:42:23 +0300 Subject: [PATCH] take into account that by default there is no donation anymore Signed-off-by: Uncle Fatso --- test/tokens/Reserve.t.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/tokens/Reserve.t.sol b/test/tokens/Reserve.t.sol index 1caaba3..53f1a7f 100644 --- a/test/tokens/Reserve.t.sol +++ b/test/tokens/Reserve.t.sol @@ -100,6 +100,8 @@ contract ReserveTest is Test { function test_withdraw_couldBeDoneByDeployer() public { assertEq(address(reserve).balance, 0); + vm.prank(initializer); + reserve.changeReminder(1e5); deal(aliceAddress, sendAmount); vm.prank(aliceAddress);