From 4642f21b42913e63409ef728a86bd186aad45941 Mon Sep 17 00:00:00 2001 From: benesjan Date: Fri, 3 Nov 2023 14:02:19 +0000 Subject: [PATCH] formatting --- yarn-project/end-to-end/src/e2e_token_contract.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn-project/end-to-end/src/e2e_token_contract.test.ts b/yarn-project/end-to-end/src/e2e_token_contract.test.ts index c7bf820c16d4..b4ff285522d0 100644 --- a/yarn-project/end-to-end/src/e2e_token_contract.test.ts +++ b/yarn-project/end-to-end/src/e2e_token_contract.test.ts @@ -176,7 +176,7 @@ describe('e2e_token_contract', () => { expect(receiptClaim.status).toBe(TxStatus.MINED); tokenSim.redeemShield(accounts[0].address, amount); // 1 note should be created containing `amount` of tokens - const {visibleNotes} = receiptClaim.testInfo!; + const { visibleNotes } = receiptClaim.testInfo!; expect(visibleNotes.length).toBe(1); expect(visibleNotes[0].note.items[0].toBigInt()).toBe(amount); });