From c1ed2c2a0d714953c5fb59c2734bc2923a0c2129 Mon Sep 17 00:00:00 2001 From: "Miquel A. Cabot" Date: Mon, 5 Sep 2022 21:34:22 +0200 Subject: [PATCH] prettify --- hardhat.config.ts | 2 +- test/SoulFactory.test.ts | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 0f5cbc7a1..c8d4edf3a 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -26,7 +26,7 @@ const networks: NetworksUserConfig = { gasPrice: "auto", gas: 13000000, forking: { - url: getInfuraURL("mainnet"), + url: getInfuraURL("mainnet") } }, rinkeby: { diff --git a/test/SoulFactory.test.ts b/test/SoulFactory.test.ts index 73c16a961..2e55825b2 100644 --- a/test/SoulFactory.test.ts +++ b/test/SoulFactory.test.ts @@ -132,9 +132,7 @@ describe("Soul Factory", () => { it("should set StableCoin from admin", async () => { await soulFactory.connect(owner).setStableCoin(address1.address); - expect(await soulFactory.stableCoin()).to.be.equal( - address1.address - ); + expect(await soulFactory.stableCoin()).to.be.equal(address1.address); }); it("should fail to set StableCoin from non admin", async () => {