summaryrefslogtreecommitdiff
path: root/packages/taler-integrationtests/src/scenario-prompt-payment.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-integrationtests/src/scenario-prompt-payment.ts')
-rw-r--r--packages/taler-integrationtests/src/scenario-prompt-payment.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/taler-integrationtests/src/scenario-prompt-payment.ts b/packages/taler-integrationtests/src/scenario-prompt-payment.ts
index f60c6704d..3e4bfc6c2 100644
--- a/packages/taler-integrationtests/src/scenario-prompt-payment.ts
+++ b/packages/taler-integrationtests/src/scenario-prompt-payment.ts
@@ -47,10 +47,9 @@ runTest(async (t: GlobalTestState) => {
},
});
- let orderStatus = await merchant.queryPrivateOrderStatus(
- "default",
- orderResp.order_id,
- );
+ let orderStatus = await merchant.queryPrivateOrderStatus({
+ orderId: orderResp.order_id,
+ });
t.assertTrue(orderStatus.order_status === "unpaid");