From d24f9f6c444c1bddab18515dc671e5853f556869 Mon Sep 17 00:00:00 2001 From: GitGuru7 <128375421+GitGuru7@users.noreply.github.com> Date: Mon, 23 Oct 2023 20:59:01 +0530 Subject: [PATCH] fix: tests --- tests/hardhat/EvilXToken.ts | 2 +- tests/hardhat/VAI/VAIController.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/hardhat/EvilXToken.ts b/tests/hardhat/EvilXToken.ts index bf4e37ed3..cb60a99bb 100644 --- a/tests/hardhat/EvilXToken.ts +++ b/tests/hardhat/EvilXToken.ts @@ -175,7 +175,7 @@ describe("Evil Token test", async () => { await underlying3.harnessSetBalance(vToken3.address, convertToUnit(1, 8)); const protocolShareReserve = await smock.fake( - "contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserve", + "contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserveV5", ); protocolShareReserve.updateAssetsState.returns(true); await vToken1.setProtocolShareReserve(protocolShareReserve.address); diff --git a/tests/hardhat/VAI/VAIController.ts b/tests/hardhat/VAI/VAIController.ts index 215cb253b..1a63aeac8 100644 --- a/tests/hardhat/VAI/VAIController.ts +++ b/tests/hardhat/VAI/VAIController.ts @@ -71,7 +71,7 @@ describe("VAIController", async () => { accessControl.isAllowedToCall.returns(true); protocolShareReserve = await smock.fake( - "contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserve", + "contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserveV5", ); protocolShareReserve.updateAssetsState.returns(true);