diff options
| author | Fabio Berger <me@fabioberger.com> | 2017-11-12 23:43:24 +0800 | 
|---|---|---|
| committer | Fabio Berger <me@fabioberger.com> | 2017-11-12 23:43:24 +0800 | 
| commit | dae5a063cf1568676485d4dc0a0d97f0e7aa5daa (patch) | |
| tree | 566c10ab457b45c5b1d535d78cece422ae24fdda | |
| parent | e57a507ba0241061f42bf9796c4bc0e8472b9289 (diff) | |
| download | dexon-sol-tools-dae5a063cf1568676485d4dc0a0d97f0e7aa5daa.tar.gz dexon-sol-tools-dae5a063cf1568676485d4dc0a0d97f0e7aa5daa.tar.zst dexon-sol-tools-dae5a063cf1568676485d4dc0a0d97f0e7aa5daa.zip | |
Fix amounts in tests one last time. Now that we updated the testRPC snapshot, this should no longer be mismatched between CI and locally
| -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 b244e3a92..d9d0fb9ad 100644 --- a/test/token_wrapper_test.ts +++ b/test/token_wrapper_test.ts @@ -161,7 +161,7 @@ describe('TokenWrapper', () => {                  const token = tokens[0];                  const ownerAddress = coinbase;                  const balance = await zeroEx.token.getBalanceAsync(token.address, ownerAddress); -                const expectedBalance = new BigNumber('100000000000000000000000000'); +                const expectedBalance = new BigNumber('1000000000000000000000000000');                  return expect(balance).to.be.bignumber.equal(expectedBalance);              });              it('should throw a CONTRACT_DOES_NOT_EXIST error for a non-existent token contract', async () => { @@ -189,7 +189,7 @@ describe('TokenWrapper', () => {                      const token = tokens[0];                      const ownerAddress = coinbase;                      const balance = await zeroExWithoutAccounts.token.getBalanceAsync(token.address, ownerAddress); -                    const expectedBalance = new BigNumber('100000000000000000000000000'); +                    const expectedBalance = new BigNumber('1000000000000000000000000000');                      return expect(balance).to.be.bignumber.equal(expectedBalance);              });          }); | 
