Skip to content

Commit da757c8

Browse files
committed
style(tests): prettier
1 parent e42b1bc commit da757c8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/duplicate-mutable-accounts/tests/duplicate-mutable-accounts.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,12 @@ describe("duplicate-mutable-accounts", () => {
4949

5050
it("Should fail with duplicate mutable accounts", async () => {
5151
// Ensure the accounts are initialized
52-
const account1 = await program.account.counter.fetch(dataAccount1.publicKey);
53-
const account2 = await program.account.counter.fetch(dataAccount2.publicKey);
52+
const account1 = await program.account.counter.fetch(
53+
dataAccount1.publicKey
54+
);
55+
const account2 = await program.account.counter.fetch(
56+
dataAccount2.publicKey
57+
);
5458
assert.strictEqual(account1.count.toNumber(), 100);
5559
assert.strictEqual(account2.count.toNumber(), 300);
5660

0 commit comments

Comments
 (0)