Skip to content

Commit

Permalink
prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Sep 5, 2022
1 parent 74b0172 commit c1ed2c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hardhat.config.ts
Expand Up @@ -26,7 +26,7 @@ const networks: NetworksUserConfig = {
gasPrice: "auto",
gas: 13000000,
forking: {
url: getInfuraURL("mainnet"),
url: getInfuraURL("mainnet")
}
},
rinkeby: {
Expand Down
4 changes: 1 addition & 3 deletions test/SoulFactory.test.ts
Expand Up @@ -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 () => {
Expand Down

0 comments on commit c1ed2c2

Please sign in to comment.