Skip to content

Commit 5446245

Browse files
committed
Fixed tests
1 parent 5bf2e33 commit 5446245

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

script/ERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pragma solidity ^0.8.13;
33

44
import {Script} from "forge-std/Script.sol";
5-
import {ERC20Facet} from "../src/ERC20/ERC20/ERC20Facet.sol";
5+
import {ERC20Facet} from "../src/token/ERC20/ERC20/ERC20Facet.sol";
66

77
contract CounterScript is Script {
88
ERC20Facet public erc20;

test/ERC20.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pragma solidity ^0.8.13;
33

44
import {Test} from "forge-std/Test.sol";
5-
import {ERC20Facet} from "../src/ERC20/ERC20/ERC20Facet.sol";
5+
import {ERC20Facet} from "../src/token/ERC20/ERC20/ERC20Facet.sol";
66

77
contract CounterTest is Test {
88
ERC20Facet public erc20;

0 commit comments

Comments
 (0)