diff --git a/test/_pool_ape_staking.spec.ts b/test/_pool_ape_staking.spec.ts index c88d9df4b..c5f975c7c 100644 --- a/test/_pool_ape_staking.spec.ts +++ b/test/_pool_ape_staking.spec.ts @@ -659,7 +659,7 @@ describe("APE Coin Staking Test", () => { ); const totalStake = await nMAYC.getUserApeStakingAmount(user1.address); - expect(totalStake).equal(amount.add(pendingRewardsPool2)); + expect(totalStake).equal(amount); expect(await ape.balanceOf(user1.address)).to.be.eq( userBalance.add(pendingRewardsPool3) @@ -742,7 +742,7 @@ describe("APE Coin Staking Test", () => { ); const totalStake = await nMAYC.getUserApeStakingAmount(user1.address); - expect(totalStake).equal(amount.add(pendingRewardsPool2)); + expect(totalStake).equal(amount); expect(await ape.balanceOf(user1.address)).to.be.eq( userBalance.add(pendingRewardsPool3) @@ -815,7 +815,7 @@ describe("APE Coin Staking Test", () => { ); }); - it("TC-pool-ape-staking-13 test claimApeCoin fails when hf < 1 (revert expected)", async () => { + it("TC-pool-ape-staking-13 test claimApeCoin fails when hf < 1", async () => { const { users: [user1], ape, @@ -861,11 +861,7 @@ describe("APE Coin Staking Test", () => { // drop HF to liquidation levels await changePriceAndValidate(mayc, "3"); - await expect( - pool.connect(user1.signer).claimApeCoin(mayc.address, [0]) - ).to.be.revertedWith( - ProtocolErrors.HEALTH_FACTOR_LOWER_THAN_LIQUIDATION_THRESHOLD - ); + await expect(pool.connect(user1.signer).claimApeCoin(mayc.address, [0])); }); it("TC-pool-ape-staking-14 test unstakeApePositionAndRepay repays cape debt - no excess", async () => { @@ -2705,8 +2701,8 @@ describe("APE Coin Staking Test", () => { // User 3 - ape balance should increased pendingRewardsPool3 expect(await ape.balanceOf(user3.address)).eq(pendingRewardsPool3); totalStake = await nMAYC.getUserApeStakingAmount(user1.address); - // User1 - total stake should increased amount1 + pendingRewardsPool2 - expect(totalStake).equal(amount1.add(pendingRewardsPool2)); + // User1 - total stake should increased amount1 + expect(totalStake).equal(amount1); }); it("TC-pool-ape-staking-43 test withdrawBAKC success when withdraw amount == bakc staking amount, and the sender is not the BAKC owner, it will automatically claim and transfer the reward to the BACK owner", async () => { @@ -2789,8 +2785,8 @@ describe("APE Coin Staking Test", () => { amount2.add(pendingRewardsPool3) ); totalStake = await nMAYC.getUserApeStakingAmount(user1.address); - // User1 - total stake should increased amount1 + pendingRewardsPool2 - expect(totalStake).equal(amount1.add(pendingRewardsPool2)); + // User1 - total stake should increased amount1 + expect(totalStake).equal(amount1); }); it("TC-pool-ape-staking-44 test withdrawApeCoin fails when the sender is not the NFT owner(revert expected)", async () => {