From 0c6be942221230fae42a61e1694d7580674d4e8c Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 23 Oct 2017 11:24:14 +0300 Subject: Fix index --- test/order_validation_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/order_validation_test.ts b/test/order_validation_test.ts index dd8b44e1f..dfcf1d43d 100644 --- a/test/order_validation_test.ts +++ b/test/order_validation_test.ts @@ -320,7 +320,7 @@ describe('OrderValidation', () => { expect(transferFromAsync.callCount).to.be.equal(4); const partialMakerFee = transferFromAsync.getCall(2).args[3]; expect(partialMakerFee).to.be.bignumber.equal(makerPartialFee); - const partialTakerFee = transferFromAsync.getCall(4).args[3]; + const partialTakerFee = transferFromAsync.getCall(3).args[3]; expect(partialTakerFee).to.be.bignumber.equal(takerPartialFee); }); }); -- cgit v1.2.3