From 727f6ad2307e340ed4146af0154098737206a288 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Fri, 9 Jun 2017 19:49:35 +0200 Subject: Fix bugs in schemas --- test/schema_test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/schema_test.ts b/test/schema_test.ts index 49dc2c1d0..e20e4f31d 100644 --- a/test/schema_test.ts +++ b/test/schema_test.ts @@ -192,7 +192,7 @@ describe('Schema', () => { const orderFillOrKillRequests = [ { signedOrder, - fillTakerAmount: 5, + fillTakerAmount: '5', }, ]; it('should validate valid order fill or kill requests', () => { @@ -217,7 +217,7 @@ describe('Schema', () => { const orderCancellationRequests = [ { order, - takerTokenCancelAmount: 5, + takerTokenCancelAmount: '5', }, ]; it('should validate valid order cancellation requests', () => { @@ -242,7 +242,7 @@ describe('Schema', () => { const orderFillRequests = [ { signedOrder, - takerTokenFillAmount: 5, + takerTokenFillAmount: '5', }, ]; it('should validate valid order fill requests', () => { -- cgit v1.2.3