diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-14 22:31:20 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-14 22:47:03 +0800 |
commit | 449a04d39ce49ac06e0de989dcbefe6f4a7d2e84 (patch) | |
tree | ebd2f7c7d25ee2706c3ca8c3aa1e942a6db9fe7a /packages/0x.js/test/expiration_watcher_test.ts | |
parent | 4bcd7ba31ed2dc23f8fcfbe35ac68173045c9f8a (diff) | |
download | dexon-0x-contracts-449a04d39ce49ac06e0de989dcbefe6f4a7d2e84.tar.gz dexon-0x-contracts-449a04d39ce49ac06e0de989dcbefe6f4a7d2e84.tar.zst dexon-0x-contracts-449a04d39ce49ac06e0de989dcbefe6f4a7d2e84.zip |
Rename tokenUtils.getNonProtocolTokens to tokenUtils.getDummyTokens
Diffstat (limited to 'packages/0x.js/test/expiration_watcher_test.ts')
-rw-r--r-- | packages/0x.js/test/expiration_watcher_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/0x.js/test/expiration_watcher_test.ts b/packages/0x.js/test/expiration_watcher_test.ts index e72653b67..c1618ce9d 100644 --- a/packages/0x.js/test/expiration_watcher_test.ts +++ b/packages/0x.js/test/expiration_watcher_test.ts @@ -57,7 +57,7 @@ describe('ExpirationWatcher', () => { fillScenarios = new FillScenarios(zeroEx, userAddresses, tokens, zrxTokenAddress, exchangeContractAddress); [coinbase, makerAddress, takerAddress, feeRecipient] = userAddresses; tokens = await zeroEx.tokenRegistry.getTokensAsync(); - const [makerToken, takerToken] = tokenUtils.getNonProtocolTokens(); + const [makerToken, takerToken] = tokenUtils.getDummyTokens(); makerTokenAddress = makerToken.address; takerTokenAddress = takerToken.address; }); |