taler-typescript-core

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

commit 6900c5ad7fc2b9328fd3547a50aeca32d1e378ee
parent 43889193dcfa8058a647b2c876a63d4c0d5d64cc
Author: Florian Dold <florian@dold.me>
Date:   Wed, 15 Jul 2026 23:54:59 +0200

improve assertion

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-kyc-fail-recover-simple.ts | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/packages/taler-harness/src/integrationtests/test-kyc-fail-recover-simple.ts b/packages/taler-harness/src/integrationtests/test-kyc-fail-recover-simple.ts @@ -195,10 +195,8 @@ export async function runKycFailRecoverSimpleTest(t: GlobalTestState) { FORM_VERSION: 1, } as ExchangeKycUploadFormRequest); - t.assertTrue( - infoResp.type === "fail" && - infoResp.case === HttpStatusCode.InternalServerError, - ); + t.assertDeepEqual(infoResp.type, "fail"); + t.assertDeepEqual(infoResp.case, HttpStatusCode.InternalServerError); } {