Skip to content

Commit

Permalink
test: fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed Dec 19, 2024
1 parent 2316dcd commit e7e2ba1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mocks/MetaMorphoMock.sol
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.26;

import "../MetaMorpho.sol";
import "../MetaMorphoV1_1.sol";

contract MetaMorphoMock is MetaMorpho {
contract MetaMorphoMock is MetaMorphoV1_1 {
constructor(
address owner,
address morpho,
uint256 initialTimelock,
address _asset,
string memory __name,
string memory __symbol
) MetaMorpho(owner, morpho, initialTimelock, _asset, __name, __symbol) {}
) MetaMorphoV1_1(owner, morpho, initialTimelock, _asset, __name, __symbol) {}

function mockSetCap(MarketParams memory marketParams, Id id, uint184 supplyCap) external {
_setCap(marketParams, id, supplyCap);
Expand Down

0 comments on commit e7e2ba1

Please sign in to comment.