aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/integrationtests/test-payment-idempotency.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-harness/src/integrationtests/test-payment-idempotency.ts')
-rw-r--r--packages/taler-harness/src/integrationtests/test-payment-idempotency.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-payment-idempotency.ts b/packages/taler-harness/src/integrationtests/test-payment-idempotency.ts
index 4a8e95af3..a7fe63f9d 100644
--- a/packages/taler-harness/src/integrationtests/test-payment-idempotency.ts
+++ b/packages/taler-harness/src/integrationtests/test-payment-idempotency.ts
@@ -23,7 +23,7 @@ import { GlobalTestState } from "../harness/harness.js";
import {
createSimpleTestkudosEnvironmentV3,
withdrawViaBankV3,
-} from "../harness/helpers.js";
+} from "../harness/environments.js";
/**
* Test the wallet-core payment API, especially that repeated operations
@@ -89,12 +89,12 @@ export async function runPaymentIdempotencyTest(t: GlobalTestState) {
preparePayResultRep.status === PreparePayResultType.PaymentPossible,
);
- const proposalId = preparePayResult.proposalId;
+ const proposalTransactionId = preparePayResult.transactionId;
const confirmPayResult = await walletClient.call(
WalletApiOperation.ConfirmPay,
{
- proposalId: proposalId,
+ transactionId: proposalTransactionId,
},
);