From 6ced554d9f6cf00d0d9e8f9ff8170af4f1cfbee3 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 1 Jun 2017 18:15:26 +0200 Subject: Revert "Add test to check the balance" This reverts commit 389c18e98e2b5663b1732d7c34f9b21afef66e44. --- test/exchange_wrapper_test.ts | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'test') diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts index 6b2fd6477..ad5eba699 100644 --- a/test/exchange_wrapper_test.ts +++ b/test/exchange_wrapper_test.ts @@ -154,16 +154,6 @@ describe('ExchangeWrapper', () => { expect(zeroEx.exchange.fillOrderAsync(signedOrder, fillAmount, shouldCheckTransfer)) .to.be.rejectedWith(FillOrderValidationErrs.EXPIRED); }); - it('should throw when not enough balance', async () => { - const makerAmount = 10; - const takerAmount = 10; - const signedOrder = await orderFactory.createSignedOrderAsync(zeroEx, maker, taker, - makerAmount, addressBySymbol.MLN, takerAmount, addressBySymbol.GNT); - zeroEx.setDefaultAccount(taker); - const tooMuch = new BigNumber(6); - expect(zeroEx.exchange.fillOrderAsync(signedOrder, tooMuch, true)) - .to.be.rejectedWith(FillOrderValidationErrs.EXPIRED); - }); }); describe('successful fills', () => { it('should fill the valid order', async () => { -- cgit v1.2.3