taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit df3261ea71a81fa1d7c7e2d2cc64eb46661ecc58
parent 7e400973186deab8177d805434a83cfc15984722
Author: Florian Dold <florian@dold.me>
Date:   Fri, 17 Jul 2026 19:27:45 +0200

harness: coarsen state matcher

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-peer-push.ts | 12+++---------
1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/packages/taler-harness/src/integrationtests/test-peer-push.ts b/packages/taler-harness/src/integrationtests/test-peer-push.ts @@ -474,21 +474,15 @@ export async function runPeerPushTest(t: GlobalTestState) { await Promise.all([ wallet1.call(WalletApiOperation.TestingWaitTransactionState, { transactionId: tx.transactionId, - txState: { - major: TransactionMajorState.Aborted, - }, + txState: stFinalUnsuccessful, }), wallet2.call(WalletApiOperation.TestingWaitTransactionState, { transactionId: prepare2.transactionId, - txState: { - major: TransactionMajorState.Aborted, - }, + txState: stFinalUnsuccessful, }), wallet3.call(WalletApiOperation.TestingWaitTransactionState, { transactionId: prepare3.transactionId, - txState: { - major: TransactionMajorState.Aborted, - }, + txState: stFinalUnsuccessful, }), ]); }