diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-07-12 09:22:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 09:22:22 +0800 |
commit | 5fe128ccf6aa71494b71c6a8ecb07c3a6145140f (patch) | |
tree | 835a231e28ed0fff4d70e98b46940b5bfe3b4ffa /test/ether_token_wrapper_test.ts | |
parent | 89236fff410563c0d290e0a8090864cf21bae62e (diff) | |
parent | 41f0be48f1360ca6241b399593212cdf767c2db0 (diff) | |
download | dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.tar dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.tar.gz dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.tar.bz2 dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.tar.lz dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.tar.xz dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.tar.zst dexon-sol-tools-5fe128ccf6aa71494b71c6a8ecb07c3a6145140f.zip |
Merge pull request #104 from 0xProject/ts-2.4
Update to typescript@2.4
Diffstat (limited to 'test/ether_token_wrapper_test.ts')
-rw-r--r-- | test/ether_token_wrapper_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ether_token_wrapper_test.ts b/test/ether_token_wrapper_test.ts index ebce81e97..5ed800fc7 100644 --- a/test/ether_token_wrapper_test.ts +++ b/test/ether_token_wrapper_test.ts @@ -66,7 +66,7 @@ describe('EtherTokenWrapper', () => { return expect( zeroEx.etherToken.depositAsync(overETHBalanceinWei, addressWithETH), - ).to.be.rejectedWith(ZeroExError.INSUFFICIENT_ETH_BALANCE_FOR_DEPOSIT); + ).to.be.rejectedWith(ZeroExError.InsufficientEthBalanceForDeposit); }); }); describe('#withdrawAsync', () => { @@ -100,7 +100,7 @@ describe('EtherTokenWrapper', () => { return expect( zeroEx.etherToken.withdrawAsync(overWETHBalance, addressWithETH), - ).to.be.rejectedWith(ZeroExError.INSUFFICIENT_WETH_BALANCE_FOR_WITHDRAWAL); + ).to.be.rejectedWith(ZeroExError.InsufficientWEthBalanceForWithdrawal); }); }); }); |