Skip to content

Commit 903ba47

Browse files
committed
test: Fix import paths
1 parent b3ef73f commit 903ba47

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/mock/MockBlastERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pragma solidity 0.8.23;
33

44
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
55

6-
import {YieldMode} from "../../../contracts/interfaces/IERC20Rebasing.sol";
6+
import {YieldMode} from "../../contracts/interfaces/IERC20Rebasing.sol";
77

88
contract MockBlastERC20 is ERC20 {
99
mapping(address _contract => YieldMode) public yieldMode;

test/mock/MockBlastWETH.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

4-
import {YieldMode} from "../../../contracts/interfaces/IERC20Rebasing.sol";
4+
import {YieldMode} from "../../contracts/interfaces/IERC20Rebasing.sol";
55

66
contract MockBlastWETH {
77
string public name = "Wrapped Ether";

test/mock/MockBlastYield.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

4-
import {YieldMode, GasMode} from "../../../contracts/interfaces/IBlast.sol";
4+
import {YieldMode, GasMode} from "../../contracts/interfaces/IBlast.sol";
55

66
contract MockBlastYield {
77
struct Config {

0 commit comments

Comments
 (0)