commit afc4cd9ed32e75d309daa68013694c9c0c65996b
parent 65a9d6018681316fc58347b50fae3f6fd2629884
Author: Florian Dold <dold@taler.net>
Date: Wed, 22 Jul 2026 19:24:20 +0200
harness: expect a payment across a donau key change to complete
The test expected the payment to stay pending, which held only while no donau
payment could complete at all.
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/packages/taler-harness/src/integrationtests/test-donau-keychange.ts b/packages/taler-harness/src/integrationtests/test-donau-keychange.ts
@@ -229,7 +229,9 @@ export async function runDonauKeychangeTest(t: GlobalTestState) {
useDonau: true,
});
- t.assertDeepEqual(r2.type, ConfirmPayResultType.Pending);
+ // The donau's keys changed under the merchant, and both sides refresh
+ // them, so the payment goes through.
+ t.assertDeepEqual(r2.type, ConfirmPayResultType.Done);
// Merchant should still be running and not crash!