Skip to content

Commit

Permalink
chore: format fixes for function parethesis
Browse files Browse the repository at this point in the history
A common typo on my part that prettier keeps catching.
  • Loading branch information
nddeluca committed Sep 6, 2024
1 parent 35ec40c commit 87ef6e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/e2e-evm/test/abi_basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ describe("ABI_BasicTests", function () {
mockAddress = (await hre.viem.deployContract(tc.mock)).address;
});

describe("State", function() {
it("has code set", async function() {
describe("State", function () {
it("has code set", async function () {
const code = await publicClient.getCode({ address: mockAddress });
expect(code).to.not.equal(0);
});

it("has nonce default of 1", async function() {
it("has nonce default of 1", async function () {
const nonce = await publicClient.getTransactionCount({ address: mockAddress });
expect(nonce).to.equal(1);
});

it("has a starting balance of 0", async function() {
it("has a starting balance of 0", async function () {
const balance = await publicClient.getBalance({ address: mockAddress });
expect(balance).to.equal(0n);
});
Expand Down

0 comments on commit 87ef6e4

Please sign in to comment.