Skip to content

Commit

Permalink
refactor: use relative import in NoDelegateCall
Browse files Browse the repository at this point in the history
test: order imports by path
  • Loading branch information
andreivladbrg committed Mar 20, 2023
1 parent 1c2dd48 commit ae7aa9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/abstracts/NoDelegateCall.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.13;

import { Errors } from "src/libraries/Errors.sol";
import { Errors } from "../libraries/Errors.sol";

/// @title NoDelegateCall
/// @notice This contract implements logic to prevent delegate calls.
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/lockup/dynamic/Dynamic.t.sol
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.19 <0.9.0;

import { SablierV2FlashLoan } from "src/abstracts/SablierV2FlashLoan.sol";
import { SablierV2LockupDynamic } from "src/SablierV2LockupDynamic.sol";
import { SablierV2FlashLoan } from "src/abstracts/SablierV2FlashLoan.sol";
import { Lockup, LockupDynamic } from "src/types/DataTypes.sol";

import { Lockup_Invariant_Test } from "../Lockup.t.sol";
Expand Down

0 comments on commit ae7aa9b

Please sign in to comment.