From 86cdb6cb83078f9f29f473e0ebb8425a2d90f5ec Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Tue, 30 May 2017 14:53:25 +0200 Subject: use token instead of erc20 --- test/token_wrapper_test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/token_wrapper_test.ts') diff --git a/test/token_wrapper_test.ts b/test/token_wrapper_test.ts index 22fb6e052..a15fab505 100644 --- a/test/token_wrapper_test.ts +++ b/test/token_wrapper_test.ts @@ -34,20 +34,20 @@ describe('TokenWrapper', () => { it('should return the balance for an existing ERC20 token', async () => { const aToken = tokens[0]; const aOwnerAddress = userAddresses[0]; - const balance = await zeroEx.erc20.getBalanceAsync(aToken.address, aOwnerAddress); + const balance = await zeroEx.token.getBalanceAsync(aToken.address, aOwnerAddress); const expectedBalance = new BigNumber('100000000000000000000000000'); expect(balance).to.be.bignumber.equal(expectedBalance); }); it ('should throw a CONTRACT_DOES_NOT_EXIST error for a non-existent token contract', async () => { const nonExistentTokenAddress = '0x9dd402f14d67e001d8efbe6583e51bf9706aa065'; const aOwnerAddress = userAddresses[0]; - expect(zeroEx.erc20.getBalanceAsync(nonExistentTokenAddress, aOwnerAddress)) + expect(zeroEx.token.getBalanceAsync(nonExistentTokenAddress, aOwnerAddress)) .to.be.rejectedWith(ZeroExError.CONTRACT_DOES_NOT_EXIST); }); it ('should return a balance of 0 for a non-existent owner address', async () => { const aToken = tokens[0]; const aNonExistentOwner = '0x198C6Ad858F213Fb31b6FE809E25040E6B964593'; - const balance = await zeroEx.erc20.getBalanceAsync(aToken.address, aNonExistentOwner); + const balance = await zeroEx.token.getBalanceAsync(aToken.address, aNonExistentOwner); const expectedBalance = new BigNumber('0'); expect(balance).to.be.bignumber.equal(expectedBalance); }); -- cgit v1.2.3