diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-12-15 00:48:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 00:48:45 +0800 |
commit | a0aa21103b51ad287de1579832a4a490ca90175a (patch) | |
tree | d65274497474e65302a91e78efa1796558aa4380 /packages/0x.js/test/subscription_test.ts | |
parent | d69143487ec441939a85ef2a7e92bb0a15cb2e6c (diff) | |
parent | ce242b10e2c4d35bbba3842d198b78373dd609f0 (diff) | |
download | dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.gz dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.bz2 dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.lz dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.xz dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.tar.zst dexon-sol-tools-a0aa21103b51ad287de1579832a4a490ca90175a.zip |
Merge pull request #258 from 0xProject/feature/contracts-refactor
A bunch of refactorings
Diffstat (limited to 'packages/0x.js/test/subscription_test.ts')
-rw-r--r-- | packages/0x.js/test/subscription_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/0x.js/test/subscription_test.ts b/packages/0x.js/test/subscription_test.ts index 3aeeaa109..d280d720a 100644 --- a/packages/0x.js/test/subscription_test.ts +++ b/packages/0x.js/test/subscription_test.ts @@ -1,3 +1,4 @@ +import {BlockchainLifecycle} from '@0xproject/dev-utils'; import BigNumber from 'bignumber.js'; import * as chai from 'chai'; import * as _ from 'lodash'; @@ -15,7 +16,6 @@ import { } from '../src'; import {BlockParamLiteral, DoneCallback} from '../src/types'; -import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; import {chaiSetup} from './utils/chai_setup'; import {constants} from './utils/constants'; import {reportCallbackErrors} from './utils/report_callback_errors'; @@ -24,7 +24,7 @@ import {web3Factory} from './utils/web3_factory'; chaiSetup.configure(); const expect = chai.expect; -const blockchainLifecycle = new BlockchainLifecycle(); +const blockchainLifecycle = new BlockchainLifecycle(constants.RPC_URL); describe('SubscriptionTest', () => { let web3: Web3; |