Skip to content

Commit

Permalink
test: Fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
0xhiroshi committed Jul 12, 2024
1 parent f9f2a00 commit abb1e74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/mock/MockBlastERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity 0.8.23;

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

import {YieldMode} from "../../../contracts/interfaces/IERC20Rebasing.sol";
import {YieldMode} from "../../contracts/interfaces/IERC20Rebasing.sol";

contract MockBlastERC20 is ERC20 {
mapping(address _contract => YieldMode) public yieldMode;
Expand Down
2 changes: 1 addition & 1 deletion test/mock/MockBlastWETH.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {YieldMode} from "../../../contracts/interfaces/IERC20Rebasing.sol";
import {YieldMode} from "../../contracts/interfaces/IERC20Rebasing.sol";

contract MockBlastWETH {
string public name = "Wrapped Ether";
Expand Down
2 changes: 1 addition & 1 deletion test/mock/MockBlastYield.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {YieldMode, GasMode} from "../../../contracts/interfaces/IBlast.sol";
import {YieldMode, GasMode} from "../../contracts/interfaces/IBlast.sol";

contract MockBlastYield {
struct Config {
Expand Down

0 comments on commit abb1e74

Please sign in to comment.