From 71906c612322304b5a6108999e6a1205e8fd4e55 Mon Sep 17 00:00:00 2001 From: "A.L" Date: Tue, 6 Feb 2024 14:55:16 +0800 Subject: [PATCH] test: add comments for commented out code --- test/integration/Aave.t.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/Aave.t.sol b/test/integration/Aave.t.sol index c424396d..1847d5b6 100644 --- a/test/integration/Aave.t.sol +++ b/test/integration/Aave.t.sol @@ -1013,6 +1013,8 @@ contract AaveIntegrationTest is BaseTest { // assert assertEq(IERC20(lWavax).balanceOf(address(this)), lClaimed); + // commenting out for now as AAVE is not giving out rewards + // assertGt(lClaimed, 0); } function testClaimRewards_SellAndPutRewardsBackIntoManager() external allNetworks allPairs { @@ -1040,6 +1042,8 @@ contract AaveIntegrationTest is BaseTest { uint256 lBalAfterTimePair = _manager.getBalance(_pair, USDC); uint256 lBalAfterTimeOther = _manager.getBalance(lOtherPair, USDC); uint256 lClaimed = _manager.claimRewardForMarket(lUSDCMarket, lWavax); + // commenting out for now as AAVE is not currently giving out additional AVAX rewards + // assertGt(lClaimed, 0); // dummy amount of proceeds from selling the rewards uint256 lAmtUSDC = 9_019_238; _deal(address(USDC), address(this), lAmtUSDC);