diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-04-05 19:19:14 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-04-05 19:52:19 +0800 |
commit | b99c797945dacae09be1e1e2d58f806423fedffa (patch) | |
tree | cbaae6089347793d7b205d696d517cf2e1de38ab /packages/0x.js/test | |
parent | 59edca41666851dc84a32330f1d978772818da9d (diff) | |
download | dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.tar dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.tar.gz dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.tar.bz2 dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.tar.lz dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.tar.xz dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.tar.zst dexon-sol-tools-b99c797945dacae09be1e1e2d58f806423fedffa.zip |
Fix tests
Diffstat (limited to 'packages/0x.js/test')
-rw-r--r-- | packages/0x.js/test/ether_token_wrapper_test.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/0x.js/test/ether_token_wrapper_test.ts b/packages/0x.js/test/ether_token_wrapper_test.ts index 23592f92e..644101dc7 100644 --- a/packages/0x.js/test/ether_token_wrapper_test.ts +++ b/packages/0x.js/test/ether_token_wrapper_test.ts @@ -1,5 +1,6 @@ import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils'; import { BigNumber } from '@0xproject/utils'; +import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as chai from 'chai'; import 'mocha'; import * as Web3 from 'web3'; @@ -105,7 +106,7 @@ describe('EtherTokenWrapper', () => { it('should throw if user has insufficient ETH balance for deposit', async () => { const preETHBalance = await (zeroEx as any)._web3Wrapper.getBalanceInWeiAsync(addressWithETH); - const extraETHBalance = Web3Wrapper.toWei(5, 'ether'); + const extraETHBalance = Web3Wrapper.toWei(new BigNumber(5)); const overETHBalanceinWei = preETHBalance.add(extraETHBalance); return expect( |