From bf7893f99721d83d074993562c37420786476cc9 Mon Sep 17 00:00:00 2001 From: dbale-altoros Date: Mon, 22 Jul 2024 17:34:21 -0300 Subject: [PATCH] fix: import-order rule --- e2e/08-autofix/imports-order/Foo1AfterFix.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/08-autofix/imports-order/Foo1AfterFix.sol b/e2e/08-autofix/imports-order/Foo1AfterFix.sol index e7ae91c9..e835d7dd 100644 --- a/e2e/08-autofix/imports-order/Foo1AfterFix.sol +++ b/e2e/08-autofix/imports-order/Foo1AfterFix.sol @@ -1,6 +1,7 @@ // SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; +import { ReentrancyGuardUpgradeable2 } from '@apenzeppelin/ReentrancyGuardUpgradeable2.sol'; import '@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol'; import 'http://github.com/owner/repo/blob/branch/path/to/Contract2.sol'; import 'https://github.com/owner/repo/blob/branch/path/to/Contract.sol'; @@ -18,7 +19,6 @@ import { Unauthorized, add as func, Point } from './Foo.sol'; import { Initializable } from './openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import './Ownable.sol'; import './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOnelooooooooooong.sol'; -import { ReentrancyGuardUpgradeable2 } from '@apenzeppelin/ReentrancyGuardUpgradeable2.sol'; contract ImportsOrder { constructor() {}