Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jul 31, 2024
1 parent c677604 commit 6d17618
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions yarn-project/end-to-end/src/e2e_fees/private_refunds.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@ describe('e2e_fees/private_refunds', () => {
const bobRandomness = poseidon2Hash([aliceRandomness]); // Called fee_payer_randomness in contracts

// 2. We call arbitrary `private_get_name(...)` function to check that the fee refund flow works.
await expect(tokenWithRefunds.methods
.private_get_name()
.prove({
await expect(
tokenWithRefunds.methods.private_get_name().prove({
fee: {
gasSettings: t.gasSettings,
paymentMethod: new PrivateRefundPaymentMethod(
Expand All @@ -152,7 +151,8 @@ describe('e2e_fees/private_refunds', () => {
true, // We set max fee/funded amount to zero to trigger the error.
),
},
})).rejects.toThrow('tx fee is higher than funded amount');
}),
).rejects.toThrow('tx fee is higher than funded amount');
});
});

Expand Down

0 comments on commit 6d17618

Please sign in to comment.