Skip to content

Commit

Permalink
build: npm ignore file in test utils
Browse files Browse the repository at this point in the history
test: use absolute paths in precompiles test
  • Loading branch information
andreivladbrg committed Jul 2, 2024
1 parent c10978d commit 725a189
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions test/utils/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.t.sol
6 changes: 3 additions & 3 deletions test/utils/Precompiles.t.sol
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.22 <0.9.0;

import { Precompiles } from "../../precompiles/Precompiles.sol";
import { ISablierV2BatchLockup } from "../../src/interfaces/ISablierV2BatchLockup.sol";
import { ISablierV2MerkleLockupFactory } from "../../src/interfaces/ISablierV2MerkleLockupFactory.sol";
import { Precompiles } from "precompiles/Precompiles.sol";
import { ISablierV2BatchLockup } from "src/interfaces/ISablierV2BatchLockup.sol";
import { ISablierV2MerkleLockupFactory } from "src/interfaces/ISablierV2MerkleLockupFactory.sol";

import { Base_Test } from "../Base.t.sol";

Expand Down

0 comments on commit 725a189

Please sign in to comment.