aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/schema_test.ts6
1 files changed, 3 insertions, 3 deletions
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', () => {