Skip to content

Commit

Permalink
use relative path in finished tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dianakocsis committed Apr 24, 2024
1 parent e3c4dad commit ea8a9c7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/libraries/Lock.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion test/libraries/NonZeroDeltaCount.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions test/libraries/PoolId.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion test/libraries/SwapFeeLibrary.t.sol
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion test/types/BalanceDelta.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ea8a9c7

Please sign in to comment.