aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/test/exchange
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-06-30 09:05:24 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-06-30 09:20:44 +0800
commit41064adc6689deb8febcf833f6987957e845b477 (patch)
treea67cd2c3eb6434651dccef2cb21e65feda29b05f /packages/contracts/test/exchange
parent2fcc36bbadcb8238ee292afc58c2cd460d1b69da (diff)
downloaddexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.tar
dexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.tar.gz
dexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.tar.bz2
dexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.tar.lz
dexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.tar.xz
dexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.tar.zst
dexon-sol-tools-41064adc6689deb8febcf833f6987957e845b477.zip
Fix build
Diffstat (limited to 'packages/contracts/test/exchange')
-rw-r--r--packages/contracts/test/exchange/dispatcher.ts1
-rw-r--r--packages/contracts/test/exchange/fill_order.ts9
2 files changed, 5 insertions, 5 deletions
diff --git a/packages/contracts/test/exchange/dispatcher.ts b/packages/contracts/test/exchange/dispatcher.ts
index 75e281a7c..afbf958d9 100644
--- a/packages/contracts/test/exchange/dispatcher.ts
+++ b/packages/contracts/test/exchange/dispatcher.ts
@@ -19,6 +19,7 @@ import { chaiSetup } from '../utils/chai_setup';
import { constants } from '../utils/constants';
import { ERC20Wrapper } from '../utils/erc20_wrapper';
import { ERC721Wrapper } from '../utils/erc721_wrapper';
+import { LogDecoder } from '../utils/log_decoder';
import { provider, txDefaults, web3Wrapper } from '../utils/web3_wrapper';
chaiSetup.configure();
diff --git a/packages/contracts/test/exchange/fill_order.ts b/packages/contracts/test/exchange/fill_order.ts
index d65ab2f9a..22eb401d9 100644
--- a/packages/contracts/test/exchange/fill_order.ts
+++ b/packages/contracts/test/exchange/fill_order.ts
@@ -1,10 +1,8 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils';
import * as _ from 'lodash';
-import { chaiSetup } from '../../src/utils/chai_setup';
-import { CoreCombinatorialUtils, coreCombinatorialUtilsFactoryAsync } from '../../src/utils/core_combinatorial_utils';
-import { provider, txDefaults, web3Wrapper } from '../../src/utils/web3_wrapper';
-
+import { chaiSetup } from '../utils/chai_setup';
+import { CoreCombinatorialUtils, coreCombinatorialUtilsFactoryAsync } from '../utils/core_combinatorial_utils';
import {
AllowanceAmountScenario,
AssetDataScenario,
@@ -15,7 +13,8 @@ import {
OrderAssetAmountScenario,
TakerAssetFillAmountScenario,
TakerScenario,
-} from '../../src/utils/types';
+} from '../utils/types';
+import { provider, txDefaults, web3Wrapper } from '../utils/web3_wrapper';
chaiSetup.configure();
const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper);