From efe8225d188f48c863a7151b3e6a6b1ecb8c7a02 Mon Sep 17 00:00:00 2001 From: fabioberger Date: Tue, 12 Nov 2019 10:52:04 +0000 Subject: [PATCH] Fix import ordering --- contracts/erc1155/test/erc1155_token.ts | 2 +- contracts/integrations/test/coordinator/coordinator_test.ts | 2 +- contracts/integrations/test/forwarder/forwarder_test.ts | 2 +- contracts/integrations/test/forwarder/forwarder_test_factory.ts | 2 +- .../test/internal-integration-tests/exchange_wrapper_test.ts | 2 +- .../test/internal-integration-tests/fillorder_test.ts | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contracts/erc1155/test/erc1155_token.ts b/contracts/erc1155/test/erc1155_token.ts index b5279cc1f5..c06ceeb976 100644 --- a/contracts/erc1155/test/erc1155_token.ts +++ b/contracts/erc1155/test/erc1155_token.ts @@ -13,10 +13,10 @@ import * as chai from 'chai'; import { LogWithDecodedArgs } from 'ethereum-types'; import * as _ from 'lodash'; +import { Erc1155Wrapper } from '../src/erc1155_wrapper'; import { ERC1155MintableContract } from '../src/wrappers'; import { artifacts } from './artifacts'; -import { Erc1155Wrapper } from '../src/erc1155_wrapper'; import { DummyERC1155ReceiverBatchTokenReceivedEventArgs, DummyERC1155ReceiverContract } from './wrappers'; chaiSetup.configure(); const expect = chai.expect; diff --git a/contracts/integrations/test/coordinator/coordinator_test.ts b/contracts/integrations/test/coordinator/coordinator_test.ts index 52312b596b..616f28116d 100644 --- a/contracts/integrations/test/coordinator/coordinator_test.ts +++ b/contracts/integrations/test/coordinator/coordinator_test.ts @@ -24,8 +24,8 @@ import { SignedOrder, SignedZeroExTransaction } from '@0x/types'; import { BigNumber } from '@0x/utils'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; -import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors'; import { DeploymentManager } from '../../src/deployment_manager'; +import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors'; import { deployCoordinatorAsync } from './deploy_coordinator'; diff --git a/contracts/integrations/test/forwarder/forwarder_test.ts b/contracts/integrations/test/forwarder/forwarder_test.ts index c6dfb93e52..6c009a5ec5 100644 --- a/contracts/integrations/test/forwarder/forwarder_test.ts +++ b/contracts/integrations/test/forwarder/forwarder_test.ts @@ -20,8 +20,8 @@ import { import { ForwarderRevertErrors } from '@0x/order-utils'; import { BigNumber } from '@0x/utils'; -import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors'; import { DeploymentManager } from '../../src/deployment_manager'; +import { Actor, actorAddressesByName, FeeRecipient, Maker } from '../actors'; import { deployForwarderAsync } from './deploy_forwarder'; import { ForwarderTestFactory } from './forwarder_test_factory'; diff --git a/contracts/integrations/test/forwarder/forwarder_test_factory.ts b/contracts/integrations/test/forwarder/forwarder_test_factory.ts index 3fd626eaf2..9789371f10 100644 --- a/contracts/integrations/test/forwarder/forwarder_test_factory.ts +++ b/contracts/integrations/test/forwarder/forwarder_test_factory.ts @@ -6,8 +6,8 @@ import { OrderInfo, SignedOrder } from '@0x/types'; import { BigNumber, RevertError } from '@0x/utils'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; -import { Actor, FeeRecipient, Maker } from '../actors'; import { DeploymentManager } from '../../src/deployment_manager'; +import { Actor, FeeRecipient, Maker } from '../actors'; // Necessary bookkeeping to validate Forwarder results interface ForwarderFillState { diff --git a/contracts/integrations/test/internal-integration-tests/exchange_wrapper_test.ts b/contracts/integrations/test/internal-integration-tests/exchange_wrapper_test.ts index 11059fc115..517d45b383 100644 --- a/contracts/integrations/test/internal-integration-tests/exchange_wrapper_test.ts +++ b/contracts/integrations/test/internal-integration-tests/exchange_wrapper_test.ts @@ -28,9 +28,9 @@ import { BigNumber } from '@0x/utils'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; import * as _ from 'lodash'; +import { DeploymentManager } from '../../src/deployment_manager'; import { Actor } from '../actors/base'; import { Maker } from '../actors/maker'; -import { DeploymentManager } from '../../src/deployment_manager'; const { addFillResults, safeGetPartialAmountFloor } = ReferenceFunctions; diff --git a/contracts/integrations/test/internal-integration-tests/fillorder_test.ts b/contracts/integrations/test/internal-integration-tests/fillorder_test.ts index 5ae42df1f2..0f7f34fd76 100644 --- a/contracts/integrations/test/internal-integration-tests/fillorder_test.ts +++ b/contracts/integrations/test/internal-integration-tests/fillorder_test.ts @@ -20,8 +20,8 @@ import { SignedOrder } from '@0x/types'; import { BigNumber } from '@0x/utils'; import { TransactionReceiptWithDecodedLogs } from 'ethereum-types'; -import { actorAddressesByName, FeeRecipient, Maker, OperatorStakerMaker, StakerKeeper, Taker } from '../actors'; import { DeploymentManager } from '../../src/deployment_manager'; +import { actorAddressesByName, FeeRecipient, Maker, OperatorStakerMaker, StakerKeeper, Taker } from '../actors'; const devUtils = new DevUtilsContract(constants.NULL_ADDRESS, provider); blockchainTests.resets('fillOrder integration tests', env => {