diff options
author | Fabio Berger <me@fabioberger.com> | 2017-09-26 21:57:36 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-09-26 21:57:36 +0800 |
commit | f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81 (patch) | |
tree | 4c5563484ef46f0c20266485b1435711d7d0d27f /test | |
parent | ad6e84882146af1164e4729db3bf43c4d8cde5db (diff) | |
download | dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.tar dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.tar.gz dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.tar.bz2 dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.tar.lz dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.tar.xz dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.tar.zst dexon-sol-tools-f8d5b72367bcd5e934e9c535b6cbd18b6de1fb81.zip |
fix test
Diffstat (limited to 'test')
-rw-r--r-- | test/order_validation_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/order_validation_test.ts b/test/order_validation_test.ts index 022a39dd1..c88ae81ac 100644 --- a/test/order_validation_test.ts +++ b/test/order_validation_test.ts @@ -65,7 +65,7 @@ describe('OrderValidation', () => { }); it('should succeed if the order is asymmetric and fillable', async () => { const makerFillableAmount = fillableAmount; - const takerFillableAmount = fillableAmount.minus(5000); + const takerFillableAmount = fillableAmount.minus(2); const signedOrder = await fillScenarios.createAsymmetricFillableSignedOrderAsync( makerTokenAddress, takerTokenAddress, makerAddress, takerAddress, makerFillableAmount, takerFillableAmount, |