diff --git a/yarn-project/end-to-end/src/fixtures/cross_chain_test_harness.ts b/yarn-project/end-to-end/src/fixtures/cross_chain_test_harness.ts index f8c768a5f1c5..dcede5d2deb9 100644 --- a/yarn-project/end-to-end/src/fixtures/cross_chain_test_harness.ts +++ b/yarn-project/end-to-end/src/fixtures/cross_chain_test_harness.ts @@ -203,7 +203,7 @@ export class CrossChainTestHarness { } async expectPublicBalanceOnL2(owner: AztecAddress, expectedBalance: bigint) { - const balance = (await this.l2Contract.methods.publicBalanceOf(owner.toField()).view({ from: owner }))[0]; + const balance = await this.l2Contract.methods.publicBalanceOf(owner.toField()).view({ from: owner }); expect(balance).toBe(expectedBalance); }