Skip to content

Commit

Permalink
update to prettier v3.0.3 (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio authored Sep 26, 2023
1 parent 47c8f28 commit 570bf9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 6 additions & 9 deletions test/utils/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ export const describeWithFixture = (
"seaport_v1_5/contracts/Seaport.sol:Seaport",
);

const ConduitControllerFactory = await ethers.getContractFactory(
"ConduitController",
);
const ConduitControllerFactory =
await ethers.getContractFactory("ConduitController");

const conduitController = await ConduitControllerFactory.deploy();

Expand All @@ -53,9 +52,8 @@ export const describeWithFixture = (

await seaportContract.deployed();

const DomainRegistryFactory = await ethers.getContractFactory(
"DomainRegistry",
);
const DomainRegistryFactory =
await ethers.getContractFactory("DomainRegistry");
const domainRegistry = await DomainRegistryFactory.deploy();
await domainRegistry.deployed();

Expand Down Expand Up @@ -91,9 +89,8 @@ export const describeWithFixture = (
const testErc20USDC = await TestERC20USDC.deploy();
await testErc20USDC.deployed();

const TestERC1271Wallet = await ethers.getContractFactory(
"TestERC1271Wallet",
);
const TestERC1271Wallet =
await ethers.getContractFactory("TestERC1271Wallet");
const testERC1271Wallet = await TestERC1271Wallet.deploy();
await testERC1271Wallet.deployed();

Expand Down

0 comments on commit 570bf9c

Please sign in to comment.