diff --git a/yarn-project/end-to-end/bootstrap.sh b/yarn-project/end-to-end/bootstrap.sh index bbf169f7f623..19d7b930931c 100755 --- a/yarn-project/end-to-end/bootstrap.sh +++ b/yarn-project/end-to-end/bootstrap.sh @@ -58,6 +58,7 @@ function test_cmds { # fees sub-tests echo "$prefix simple e2e_fees/account_init" + echo "$prefix simple e2e_fees/dapp_subscription" echo "$prefix simple e2e_fees/failures" echo "$prefix simple e2e_fees/fee_juice_payments" echo "$prefix simple e2e_fees/gas_estimation" diff --git a/yarn-project/end-to-end/src/e2e_fees/dapp_subscription.test.ts b/yarn-project/end-to-end/src/e2e_fees/dapp_subscription.test.ts index 1c9f66111e64..2ecb52e4b35d 100644 --- a/yarn-project/end-to-end/src/e2e_fees/dapp_subscription.test.ts +++ b/yarn-project/end-to-end/src/e2e_fees/dapp_subscription.test.ts @@ -115,7 +115,7 @@ describe('e2e_fees dapp_subscription', () => { await expectBananasPrivateDelta(-t.SUBSCRIPTION_AMOUNT - transactionFee!, t.SUBSCRIPTION_AMOUNT, 0n); await expectBananasPublicDelta(0n, 0n, transactionFee!); - // REFUND_AMOUNT is a transparent note note + // REFUND_AMOUNT is a transparent note }); it('should allow Alice to subscribe by paying with bananas in public', async () => { @@ -172,8 +172,7 @@ describe('e2e_fees dapp_subscription', () => { it('should reject after the sub runs out', async () => { // Subscribe again. This will overwrite the previous subscription. await subscribe(new PrivateFeePaymentMethod(bananaFPC.address, aliceWallet), 0); - // TODO(#6651): Change back to /(context.block_number()) as u64 < expiry_block_number as u64/ when fixed - await expect(dappIncrement()).rejects.toThrow(/Note encrypted logs hash mismatch/); + await expect(dappIncrement()).rejects.toThrow(/Block number mismatch/i); }); it('should reject after the txs run out', async () => {