From f262b288123d4198223274a3382b9a1110d3ca33 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 4 Feb 2021 17:13:31 +0100 Subject: use new auth token for merchant in integration tests --- packages/taler-wallet-core/src/types/walletTypes.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/taler-wallet-core/src/types/walletTypes.ts') diff --git a/packages/taler-wallet-core/src/types/walletTypes.ts b/packages/taler-wallet-core/src/types/walletTypes.ts index f195918ac..1b98df276 100644 --- a/packages/taler-wallet-core/src/types/walletTypes.ts +++ b/packages/taler-wallet-core/src/types/walletTypes.ts @@ -689,7 +689,7 @@ export interface GetExchangeTosResult { export interface TestPayArgs { merchantBaseUrl: string; - merchantApiKey: string; + merchantAuthToken: string; amount: string; summary: string; } @@ -697,7 +697,7 @@ export interface TestPayArgs { export const codecForTestPayArgs = (): Codec => buildCodecForObject() .property("merchantBaseUrl", codecForString()) - .property("merchantApiKey", codecForString()) + .property("merchantAuthToken", codecForString()) .property("amount", codecForString()) .property("summary", codecForString()) .build("TestPayArgs"); @@ -706,7 +706,7 @@ export interface IntegrationTestArgs { exchangeBaseUrl: string; bankBaseUrl: string; merchantBaseUrl: string; - merchantApiKey: string; + merchantAuthToken: string; amountToWithdraw: string; amountToSpend: string; } @@ -716,7 +716,7 @@ export const codecForIntegrationTestArgs = (): Codec => .property("exchangeBaseUrl", codecForString()) .property("bankBaseUrl", codecForString()) .property("merchantBaseUrl", codecForString()) - .property("merchantApiKey", codecForString()) + .property("merchantAuthToken", codecForString()) .property("amountToSpend", codecForAmountString()) .property("amountToWithdraw", codecForAmountString()) .build("IntegrationTestArgs"); -- cgit v1.2.3