commit d0f90d80c344602d632372cc13b1f35a2017cfa5
parent 12f7657f6391f59c60dfc1824c31037beeb2b4ab
Author: Florian Dold <florian@dold.me>
Date: Sun, 19 Jul 2026 01:30:10 +0200
harness: fix wait in peer-push test
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/packages/taler-harness/src/integrationtests/test-peer-push.ts b/packages/taler-harness/src/integrationtests/test-peer-push.ts
@@ -245,7 +245,9 @@ export async function runPeerPushTest(t: GlobalTestState) {
}),
wallet3.call(WalletApiOperation.TestingWaitTransactionState, {
transactionId: prepare3.transactionId,
- txState: stFinalUnsuccessful,
+ txState: {
+ major: TransactionMajorState.Done,
+ },
}),
]),
]);