diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-07-07 05:51:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-07 05:51:44 +0800 |
commit | 18050b7ea3eae19626a7976c004b237287ff5363 (patch) | |
tree | bde30c03faf91a4385cfa1393a143c2281ee97b1 /test/artifacts_test.ts | |
parent | f2611d5b2be4c4c1b8bcfc9c964a13faf2329316 (diff) | |
parent | 9f89dbc8e4f3159e5fb80ea8d977911c404dd3bc (diff) | |
download | dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.tar dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.tar.gz dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.tar.bz2 dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.tar.lz dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.tar.xz dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.tar.zst dexon-sol-tools-18050b7ea3eae19626a7976c004b237287ff5363.zip |
Merge pull request #94 from 0xProject/moveExchangeAddressGetters
Moves exchange contract address getters to zeroEx top level
Diffstat (limited to 'test/artifacts_test.ts')
-rw-r--r-- | test/artifacts_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/artifacts_test.ts b/test/artifacts_test.ts index 22d55a2ee..8393250aa 100644 --- a/test/artifacts_test.ts +++ b/test/artifacts_test.ts @@ -27,7 +27,7 @@ describe('Artifacts', () => { await (zeroEx.token as any)._getProxyAddressAsync(); }).timeout(TIMEOUT); it('exchange contract is deployed', async () => { - const exchangeContractAddresses = await zeroEx.exchange.getAvailableContractAddressesAsync(); + const exchangeContractAddresses = await zeroEx.getAvailableExchangeContractAddressesAsync(); expect(exchangeContractAddresses).to.have.lengthOf.above(0); }).timeout(TIMEOUT); }); |