diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-06-13 01:07:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 01:07:40 +0800 |
commit | 2cac659f8b5766e8009210cee6054bb27616097c (patch) | |
tree | 5bd556655eb8d0d0ceacf87b81def08826349675 /test/0x.js_test.ts | |
parent | b1ab696fdd16157702192e280c2e0a840950288a (diff) | |
parent | 6cdd90e18b3a830423ef6b44d02648a98442ba54 (diff) | |
download | dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.gz dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.bz2 dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.lz dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.xz dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.tar.zst dexon-sol-tools-2cac659f8b5766e8009210cee6054bb27616097c.zip |
Merge pull request #63 from 0xProject/api-refactor
Api refactor
Diffstat (limited to 'test/0x.js_test.ts')
-rw-r--r-- | test/0x.js_test.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index f60bf01f8..42ab46cc9 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -4,10 +4,8 @@ import {chaiSetup} from './utils/chai_setup'; import 'mocha'; import * as BigNumber from 'bignumber.js'; import * as Sinon from 'sinon'; -import {ZeroEx} from '../src/0x'; +import {ZeroEx, Order, ECSignature} from '../src'; import {constants} from './utils/constants'; -import {Order} from '../src/types'; -import {ECSignature} from '../src/types'; import {web3Factory} from './utils/web3_factory'; chaiSetup.configure(); |