Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Soghoian committed Feb 14, 2023
1 parent b60547d commit ed24026
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/controllers/PoolController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,6 @@ describe("PoolController", () => {
it("triggers a snapshot of the pool", async () => {
const {
poolAdmin,
borrower,
otherAccount,
liquidityAsset,
pool,
Expand Down Expand Up @@ -1807,7 +1806,7 @@ describe("PoolController", () => {
const { poolAdmin, poolController, loan } = await loadFixture(
loadPoolFixture
);
let callbackTimestamp = await loan.callbackTimestamp();
const callbackTimestamp = await loan.callbackTimestamp();
expect(callbackTimestamp).to.equal(0);

await poolController.connect(poolAdmin).markLoanCallback(loan.address);
Expand Down

0 comments on commit ed24026

Please sign in to comment.