diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-30 21:28:45 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-30 21:28:45 +0800 |
commit | f066b521438f6e2d4a8c32194a569e59c7079c4f (patch) | |
tree | cc2d1fc98acebd3ff9c406353c819fe2c5846e4c /test | |
parent | 53e83a7d8168d1feace1959803d3ad5e21dff7b8 (diff) | |
download | dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.tar dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.tar.gz dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.tar.bz2 dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.tar.lz dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.tar.xz dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.tar.zst dexon-sol-tools-f066b521438f6e2d4a8c32194a569e59c7079c4f.zip |
remove spaces after it keyword
Diffstat (limited to 'test')
-rw-r--r-- | test/token_wrapper_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/token_wrapper_test.ts b/test/token_wrapper_test.ts index 9ce078c15..c9cd08028 100644 --- a/test/token_wrapper_test.ts +++ b/test/token_wrapper_test.ts @@ -38,13 +38,13 @@ describe('TokenWrapper', () => { 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 () => { + 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.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 () => { + 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.token.getBalanceAsync(aToken.address, aNonExistentOwner); |