diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-18 13:45:34 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-26 04:25:56 +0800 |
commit | 73e8f890b520ceaf16b5ad38f926b67dd3ea148b (patch) | |
tree | 0312339e0537111fc81c41f5cdaefe3d8f69c5fb /test | |
parent | c11ba988c78e2d6b7c8e1a57f937c6069337c702 (diff) | |
download | dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.tar dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.tar.gz dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.tar.bz2 dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.tar.lz dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.tar.xz dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.tar.zst dexon-sol-tools-73e8f890b520ceaf16b5ad38f926b67dd3ea148b.zip |
Remove unused imports
Diffstat (limited to 'test')
-rw-r--r-- | test/0x.js_test.ts | 1 | ||||
-rw-r--r-- | test/artifacts_test.ts | 1 | ||||
-rw-r--r-- | test/ether_token_wrapper_test.ts | 2 | ||||
-rw-r--r-- | test/exchange_wrapper_test.ts | 1 |
4 files changed, 1 insertions, 4 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index 3d9aa105b..03bf21e96 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -6,7 +6,6 @@ import * as BigNumber from 'bignumber.js'; import * as Sinon from 'sinon'; import {ZeroEx, Order} from '../src'; import {constants} from './utils/constants'; -import {assert} from '../src/utils/assert'; import {web3Factory} from './utils/web3_factory'; chaiSetup.configure(); diff --git a/test/artifacts_test.ts b/test/artifacts_test.ts index 04b9ecb2d..65d75f16e 100644 --- a/test/artifacts_test.ts +++ b/test/artifacts_test.ts @@ -3,7 +3,6 @@ import * as chai from 'chai'; import {chaiSetup} from './utils/chai_setup'; import HDWalletProvider = require('truffle-hdwallet-provider'); import {ZeroEx} from '../src'; -import {web3Factory} from './utils/web3_factory'; import {constants} from './utils/constants'; chaiSetup.configure(); diff --git a/test/ether_token_wrapper_test.ts b/test/ether_token_wrapper_test.ts index 5ed800fc7..a8186499c 100644 --- a/test/ether_token_wrapper_test.ts +++ b/test/ether_token_wrapper_test.ts @@ -5,7 +5,7 @@ import * as Web3 from 'web3'; import * as BigNumber from 'bignumber.js'; import promisify = require('es6-promisify'); import {web3Factory} from './utils/web3_factory'; -import {ZeroEx, ZeroExError, Token} from '../src'; +import {ZeroEx, ZeroExError} from '../src'; import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; chaiSetup.configure(); diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts index 4b4cfeccb..9c3da81b2 100644 --- a/test/exchange_wrapper_test.ts +++ b/test/exchange_wrapper_test.ts @@ -1,5 +1,4 @@ import 'mocha'; -import * as _ from 'lodash'; import * as chai from 'chai'; import * as Web3 from 'web3'; import * as BigNumber from 'bignumber.js'; |