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);