Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
alxkzmn committed Jul 14, 2021
1 parent 60a96f3 commit 3829e4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/HodlERC20NoBonus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe("HodlERC20 Tests Without Bonus Token", function () {
expiry = BigNumber.from(parseInt(currentBlock.timestamp.toString()) + totalDuration);

accounts = await ethers.getSigners();
const [depositor1,depositor2, _feeRecipient] = accounts;
const [depositor1, depositor2, _feeRecipient] = accounts;

donor = depositor1;
depositor = depositor2;
Expand All @@ -56,7 +56,7 @@ describe("HodlERC20 Tests Without Bonus Token", function () {
// mint 10 WETH to depositor
const mintAmount = utils.parseUnits("10", "ether");
await token.mint(depositor.address, mintAmount);

await hodl.init(
token.address,
penalty,
Expand Down Expand Up @@ -97,5 +97,5 @@ describe("HodlERC20 Tests Without Bonus Token", function () {
const sharesAfter = await hodl.shares(depositor.address);
expect(sharesBefore).to.eq(sharesAfter);
});
})
});
});

0 comments on commit 3829e4b

Please sign in to comment.