Rename tokenUtils.getNonProtocolTokens to tokenUtils.getDummyTokens

This commit is contained in:
Leonid Logvinov
2017-12-14 15:31:20 +01:00
parent 4bcd7ba31e
commit 449a04d39c
4 changed files with 14 additions and 11 deletions

View File

@@ -65,7 +65,8 @@ describe('OrderStateWatcher', () => {
tokenUtils = new TokenUtils(tokens);
zrxTokenAddress = tokenUtils.getProtocolTokenOrThrow().address;
fillScenarios = new FillScenarios(zeroEx, userAddresses, tokens, zrxTokenAddress, exchangeContractAddress);
[makerToken, takerToken] = tokenUtils.getNonProtocolTokens();
await fillScenarios.initTokenBalancesAsync();
[makerToken, takerToken] = tokenUtils.getDummyTokens();
web3Wrapper = (zeroEx as any)._web3Wrapper;
});
beforeEach(async () => {