aboutsummaryrefslogtreecommitdiffstats
path: root/test/artifacts_test.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-07-07 05:51:44 +0800
committerGitHub <noreply@github.com>2017-07-07 05:51:44 +0800
commit18050b7ea3eae19626a7976c004b237287ff5363 (patch)
treebde30c03faf91a4385cfa1393a143c2281ee97b1 /test/artifacts_test.ts
parentf2611d5b2be4c4c1b8bcfc9c964a13faf2329316 (diff)
parent9f89dbc8e4f3159e5fb80ea8d977911c404dd3bc (diff)
downloaddexon-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.ts2
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);
});