@@ -579,7 +579,9 @@ describe("SprinterLiquidityMining", function () {
579579 expect ( await lpToken . balanceOf ( user . address ) ) . to . equal ( 0n ) ;
580580 expect ( await lpToken . balanceOf ( liquidityMining . target ) ) . to . equal ( 10n * LP ) ;
581581 expect ( await liquidityMining . totalSupply ( ) ) . to . equal ( 10n * LP * ( 3n * MONTH + extraSeconds ) / ( 3n * MONTH ) ) ;
582- expect ( await liquidityMining . balanceOf ( user . address ) ) . to . equal ( 10n * LP * ( 3n * MONTH + extraSeconds ) / ( 3n * MONTH ) ) ;
582+ expect ( await liquidityMining . balanceOf ( user . address ) ) . to . equal (
583+ 10n * LP * ( 3n * MONTH + extraSeconds ) / ( 3n * MONTH )
584+ ) ;
583585 expect ( await liquidityMining . balanceOf ( user2 . address ) ) . to . equal ( 0n ) ;
584586 expect ( await usdc . balanceOf ( liquidityPool . target ) ) . to . equal ( 10n * USDC ) ;
585587 expect ( await liquidityMining . stakes ( user . address ) ) . to . eql ( [ 10n * LP , 3n * MONTH , until , 100n ] ) ;
@@ -771,7 +773,9 @@ describe("SprinterLiquidityMining", function () {
771773 expect ( await lpToken . balanceOf ( user . address ) ) . to . equal ( 10n * LP ) ;
772774 expect ( await lpToken . balanceOf ( liquidityMining . target ) ) . to . equal ( 0n ) ;
773775 expect ( await liquidityMining . totalSupply ( ) ) . to . equal ( 10n * LP * ( 3n * MONTH + extraSeconds ) / ( 3n * MONTH ) ) ;
774- expect ( await liquidityMining . balanceOf ( user . address ) ) . to . equal ( 10n * LP * ( 3n * MONTH + extraSeconds ) / ( 3n * MONTH ) ) ;
776+ expect ( await liquidityMining . balanceOf ( user . address ) ) . to . equal (
777+ 10n * LP * ( 3n * MONTH + extraSeconds ) / ( 3n * MONTH )
778+ ) ;
775779 expect ( await usdc . balanceOf ( liquidityPool . target ) ) . to . equal ( 10n * USDC ) ;
776780 expect ( await liquidityMining . stakes ( user . address ) ) . to . eql ( [ 0n , 0n , 0n , 0n ] ) ;
777781 } ) ;
0 commit comments