From ea8a9c78265f1b9b2db71207c498905d3480b1ae Mon Sep 17 00:00:00 2001 From: Diana Kocsis Date: Wed, 24 Apr 2024 13:26:40 -0400 Subject: [PATCH] use relative path in finished tests --- test/libraries/Lock.t.sol | 2 +- test/libraries/NonZeroDeltaCount.t.sol | 2 +- test/libraries/PoolId.t.sol | 4 ++-- test/libraries/SwapFeeLibrary.t.sol | 2 +- test/types/BalanceDelta.t.sol | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/libraries/Lock.t.sol b/test/libraries/Lock.t.sol index 2b8fd0a14..8c55c58ba 100644 --- a/test/libraries/Lock.t.sol +++ b/test/libraries/Lock.t.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.20; import {Test} from "forge-std/Test.sol"; -import {Lock} from "src/libraries/Lock.sol"; +import {Lock} from "../../src/libraries/Lock.sol"; contract LockTest is Test { function test_lock() public { diff --git a/test/libraries/NonZeroDeltaCount.t.sol b/test/libraries/NonZeroDeltaCount.t.sol index 128a5964e..beb4244cc 100644 --- a/test/libraries/NonZeroDeltaCount.t.sol +++ b/test/libraries/NonZeroDeltaCount.t.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.20; import {Test} from "forge-std/Test.sol"; -import {NonZeroDeltaCount} from "src/libraries/NonZeroDeltaCount.sol"; +import {NonZeroDeltaCount} from "../../src/libraries/NonZeroDeltaCount.sol"; contract NonZeroDeltaCountTest is Test { function test_incrementNonzeroDeltaCount() public { diff --git a/test/libraries/PoolId.t.sol b/test/libraries/PoolId.t.sol index fc8fc48d2..79a93357c 100644 --- a/test/libraries/PoolId.t.sol +++ b/test/libraries/PoolId.t.sol @@ -2,8 +2,8 @@ pragma solidity ^0.8.20; import {Test} from "forge-std/Test.sol"; -import {PoolId, PoolIdLibrary} from "src/types/PoolId.sol"; -import {PoolKey} from "src/types/PoolKey.sol"; +import {PoolId, PoolIdLibrary} from "../../src/types/PoolId.sol"; +import {PoolKey} from "../../src/types/PoolKey.sol"; contract PoolIdTest is Test { using PoolIdLibrary for PoolKey; diff --git a/test/libraries/SwapFeeLibrary.t.sol b/test/libraries/SwapFeeLibrary.t.sol index 67eca377c..d29aa9584 100644 --- a/test/libraries/SwapFeeLibrary.t.sol +++ b/test/libraries/SwapFeeLibrary.t.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.20; -import "src/libraries/LPFeeLibrary.sol"; +import "../../src/libraries/LPFeeLibrary.sol"; import "forge-std/Test.sol"; contract LPFeeLibraryTest is Test { diff --git a/test/types/BalanceDelta.t.sol b/test/types/BalanceDelta.t.sol index adfa9bec3..1a332a784 100644 --- a/test/types/BalanceDelta.t.sol +++ b/test/types/BalanceDelta.t.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.20; import {Test} from "forge-std/Test.sol"; -import {BalanceDelta, toBalanceDelta} from "src/types/BalanceDelta.sol"; +import {BalanceDelta, toBalanceDelta} from "../../src/types/BalanceDelta.sol"; contract TestBalanceDelta is Test { function test_toBalanceDelta() public {