@@ -423,7 +423,9 @@ describe('drift client', () => {
423
423
assert . ok ( orderActionRecord . baseAssetAmountFilled . eq ( new BN ( 24000000000 ) ) ) ;
424
424
assert . ok ( orderActionRecord . quoteAssetAmountFilled . eq ( new BN ( 24000000 ) ) ) ;
425
425
assert . ok ( orderActionRecord . marketIndex === 0 ) ;
426
- assert . ok ( orderActionRecord . takerExistingQuoteEntryAmount . eq ( new BN ( 24000000 ) ) ) ;
426
+ assert . ok (
427
+ orderActionRecord . takerExistingQuoteEntryAmount . eq ( new BN ( 24000000 ) )
428
+ ) ;
427
429
assert . ok ( orderActionRecord . takerExistingBaseAssetAmount === null ) ;
428
430
} ) ;
429
431
@@ -491,8 +493,12 @@ describe('drift client', () => {
491
493
assert . ok ( orderActionRecord . baseAssetAmountFilled . eq ( new BN ( 48000000000 ) ) ) ;
492
494
assert . ok ( orderActionRecord . quoteAssetAmountFilled . eq ( new BN ( 48000000 ) ) ) ;
493
495
494
- assert . ok ( orderActionRecord . takerExistingQuoteEntryAmount . eq ( new BN ( 24000001 ) ) ) ;
495
- assert . ok ( orderActionRecord . takerExistingBaseAssetAmount . eq ( new BN ( 24000000000 ) ) ) ;
496
+ assert . ok (
497
+ orderActionRecord . takerExistingQuoteEntryAmount . eq ( new BN ( 24000001 ) )
498
+ ) ;
499
+ assert . ok (
500
+ orderActionRecord . takerExistingBaseAssetAmount . eq ( new BN ( 24000000000 ) )
501
+ ) ;
496
502
497
503
assert . ok ( orderActionRecord . marketIndex === 0 ) ;
498
504
} ) ;
@@ -541,7 +547,9 @@ describe('drift client', () => {
541
547
assert . ok ( orderActionRecord . quoteAssetAmountFilled . eq ( new BN ( 24000000 ) ) ) ;
542
548
assert . ok ( orderActionRecord . marketIndex === 0 ) ;
543
549
544
- assert . ok ( orderActionRecord . takerExistingQuoteEntryAmount . eq ( new BN ( 24000000 ) ) ) ;
550
+ assert . ok (
551
+ orderActionRecord . takerExistingQuoteEntryAmount . eq ( new BN ( 24000000 ) )
552
+ ) ;
545
553
assert . ok ( orderActionRecord . takerExistingBaseAssetAmount === null ) ;
546
554
} ) ;
547
555
0 commit comments