Skip to content

Commit

Permalink
autofix e2e tests8
Browse files Browse the repository at this point in the history
  • Loading branch information
dbale-altoros committed Jul 1, 2024
1 parent 8339397 commit 25a6fcb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion e2e/08-autofix/imports-order/Foo2.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import {Foo1} from './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOne.sol';
import './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOnelooooooooooong.sol';
import '../../../../../token/interfaces/IXTokenWrapper3.sol';
import {IXTokenFactory2} from '../../atoken/interfaces/IXTokenFactory2.sol';
import {Initializable} from './openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
Expand Down
2 changes: 1 addition & 1 deletion e2e/08-autofix/imports-order/Foo2AfterFix.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import '../token/interfaces/IXTokenWrapper.sol';
import {IXTokenWrapper2} from '../token/interfaces/IXTokenWrapper2.sol';
import {Initializable} from './openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
import {Afool1} from './Afool1.sol';
import './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOne.sol';
import './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOnelooooooooooong.sol';

contract ImportsOrder2 {
constructor() {}
Expand Down
2 changes: 1 addition & 1 deletion e2e/08-autofix/imports-order/Foo2BeforeFix.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;

import {Foo1} from './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOne.sol';
import './ThisIsAVeryLongFileOnPurposeToTestTheFirstPathShorterThanTheLastOnelooooooooooong.sol';
import '../../../../../token/interfaces/IXTokenWrapper3.sol';
import {IXTokenFactory2} from '../../atoken/interfaces/IXTokenFactory2.sol';
import {Initializable} from './openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
Expand Down
2 changes: 1 addition & 1 deletion e2e/autofix-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function compareTextFiles(file1Path, file2Path) {

console.log('=================================================================================')
console.log('=================================================================================')
console.log('file2Content: ', file1Content)
console.log('file1Content: ', file1Content)
console.log('=================================================================================')
console.log('=================================================================================')
console.log('=================================================================================')
Expand Down

0 comments on commit 25a6fcb

Please sign in to comment.