From 55fecc6fef38a042cb1507cf885f8651f7b05f83 Mon Sep 17 00:00:00 2001 From: clement-ux Date: Fri, 19 Jul 2024 14:35:07 +0200 Subject: [PATCH] fix: import path. --- test/Base.sol | 4 ++-- test/fork/concrete/Ownable.t.sol | 2 +- test/fork/concrete/Proxy.t.sol | 2 +- test/fork/concrete/SwapExactTokensForTokens.t.sol | 2 +- test/fork/concrete/SwapTokensForExactTokens.t.sol | 2 +- test/fork/concrete/Transfer.t.sol | 2 +- test/fork/concrete/Withdraw.t.sol | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/test/Base.sol b/test/Base.sol index c64667b..478e029 100644 --- a/test/Base.sol +++ b/test/Base.sol @@ -9,8 +9,8 @@ import {Proxy} from "contracts/Proxy.sol"; import {OEthARM} from "contracts/OethARM.sol"; // Interfaces -import {IERC20} from "./../src/contracts/Interfaces.sol"; -import {IOETHVault} from "./../src/contracts/Interfaces.sol"; +import {IERC20} from "contracts/Interfaces.sol"; +import {IOETHVault} from "contracts/Interfaces.sol"; abstract contract Base_Test_ is Test { ////////////////////////////////////////////////////// diff --git a/test/fork/concrete/Ownable.t.sol b/test/fork/concrete/Ownable.t.sol index 3e9902a..a44e064 100644 --- a/test/fork/concrete/Ownable.t.sol +++ b/test/fork/concrete/Ownable.t.sol @@ -2,7 +2,7 @@ pragma solidity 0.8.23; // Test imports -import {Fork_Shared_Test_} from "../shared/Shared.sol"; +import {Fork_Shared_Test_} from "test/fork/shared/Shared.sol"; // Utils import {Mainnet} from "test/utils/Addresses.sol"; diff --git a/test/fork/concrete/Proxy.t.sol b/test/fork/concrete/Proxy.t.sol index a746add..e643fff 100644 --- a/test/fork/concrete/Proxy.t.sol +++ b/test/fork/concrete/Proxy.t.sol @@ -5,7 +5,7 @@ pragma solidity 0.8.23; import {OEthARM} from "contracts/OethARM.sol"; // Test imports -import {Fork_Shared_Test_} from "../shared/Shared.sol"; +import {Fork_Shared_Test_} from "test/fork/shared/Shared.sol"; // Utils import {Mainnet} from "test/utils/Addresses.sol"; diff --git a/test/fork/concrete/SwapExactTokensForTokens.t.sol b/test/fork/concrete/SwapExactTokensForTokens.t.sol index 75c816d..0cb6a52 100644 --- a/test/fork/concrete/SwapExactTokensForTokens.t.sol +++ b/test/fork/concrete/SwapExactTokensForTokens.t.sol @@ -2,7 +2,7 @@ pragma solidity 0.8.23; // Test imports -import {Fork_Shared_Test_} from "../shared/Shared.sol"; +import {Fork_Shared_Test_} from "test/fork/shared/Shared.sol"; // Interfaces import {IERC20} from "contracts/Interfaces.sol"; diff --git a/test/fork/concrete/SwapTokensForExactTokens.t.sol b/test/fork/concrete/SwapTokensForExactTokens.t.sol index d31d490..04d46fc 100644 --- a/test/fork/concrete/SwapTokensForExactTokens.t.sol +++ b/test/fork/concrete/SwapTokensForExactTokens.t.sol @@ -2,7 +2,7 @@ pragma solidity 0.8.23; // Test imports -import {Fork_Shared_Test_} from "../shared/Shared.sol"; +import {Fork_Shared_Test_} from "test/fork/shared/Shared.sol"; // Interfaces import {IERC20} from "contracts/Interfaces.sol"; diff --git a/test/fork/concrete/Transfer.t.sol b/test/fork/concrete/Transfer.t.sol index 26519da..248b364 100644 --- a/test/fork/concrete/Transfer.t.sol +++ b/test/fork/concrete/Transfer.t.sol @@ -2,7 +2,7 @@ pragma solidity 0.8.23; // Test imports -import {Fork_Shared_Test_} from "../shared/Shared.sol"; +import {Fork_Shared_Test_} from "test/fork/shared/Shared.sol"; // Interfaces import {IERC20} from "contracts/Interfaces.sol"; diff --git a/test/fork/concrete/Withdraw.t.sol b/test/fork/concrete/Withdraw.t.sol index c9d385c..9950a74 100644 --- a/test/fork/concrete/Withdraw.t.sol +++ b/test/fork/concrete/Withdraw.t.sol @@ -2,7 +2,7 @@ pragma solidity 0.8.23; // Test imports -import {Fork_Shared_Test_} from "../shared/Shared.sol"; +import {Fork_Shared_Test_} from "test/fork/shared/Shared.sol"; // Interfaces import {IERC20} from "contracts/Interfaces.sol";