taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit bcc2d364ae9215e82f5508b88c82ed13871f5f11
parent e592376ceb8eea32ae37694170491a0ccd470a43
Author: Florian Dold <florian@dold.me>
Date:   Wed, 14 Jan 2026 12:46:01 +0100

harness: fix case (in-)sensitivity issue in test (part II)

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-kyc-challenger.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-harness/src/integrationtests/test-kyc-challenger.ts b/packages/taler-harness/src/integrationtests/test-kyc-challenger.ts @@ -350,7 +350,7 @@ export async function runKycChallengerTest(t: GlobalTestState) { // We need to "visit" the KYC proof URL at least once to trigger the exchange // asking for the KYC status. - const proofUrl = new URL(`kyc-proof/MYPROV`, exchange.baseUrl); + const proofUrl = new URL(`kyc-proof/myprov`, exchange.baseUrl); proofUrl.searchParams.set("state", paytoHash); proofUrl.searchParams.set("code", "code_is_ok"); const proofHttpResp = await harnessHttpLib.fetch(proofUrl.href);