Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GitGuru7 committed Oct 23, 2023
1 parent e6ea28b commit d24f9f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/hardhat/EvilXToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ describe("Evil Token test", async () => {
await underlying3.harnessSetBalance(vToken3.address, convertToUnit(1, 8));

const protocolShareReserve = await smock.fake<IProtocolShareReserve>(
"contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserve",
"contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserveV5",
);
protocolShareReserve.updateAssetsState.returns(true);
await vToken1.setProtocolShareReserve(protocolShareReserve.address);
Expand Down
2 changes: 1 addition & 1 deletion tests/hardhat/VAI/VAIController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe("VAIController", async () => {
accessControl.isAllowedToCall.returns(true);

protocolShareReserve = await smock.fake<IProtocolShareReserve>(
"contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserve",
"contracts/Tokens/VTokens/VTokenInterfaces.sol:IProtocolShareReserveV5",
);
protocolShareReserve.updateAssetsState.returns(true);

Expand Down

0 comments on commit d24f9f6

Please sign in to comment.