Skip to content

Commit

Permalink
run linter
Browse files Browse the repository at this point in the history
  • Loading branch information
sethhrbek committed Oct 19, 2023
1 parent 9b8ff62 commit bdcd8d4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/facets/admin/transferDiamondOwner.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ describe("AdminFacet.transferDiamondOwner", () => {
const { adminFacet } = await getContracts();
deployer = await ethers.getNamedSigner("deployer");
const signers = await ethers.getSigners();
await adminFacet.connect(deployer).transferDiamondOwner(signers[1].address);
await adminFacet
.connect(deployer)
.transferDiamondOwner(signers[1].address);
});

it("reverts", async () => {
Expand Down

0 comments on commit bdcd8d4

Please sign in to comment.