Skip to content

Commit 3f0487b

Browse files
committed
Fix lint
1 parent bb989f3 commit 3f0487b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/SprinterLiquidityMining.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)