taler-typescript-core

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

commit e37fa59b6d9606c09ca447bc3a3fb73d61bd6de1
parent 0c5e5193ed91e915ccf551ba21340503ebc53fd5
Author: Florian Dold <florian@dold.me>
Date:   Mon,  8 Jul 2024 11:54:42 +0200

harness: fix test

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-wallet-dbless.ts | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/packages/taler-harness/src/integrationtests/test-wallet-dbless.ts b/packages/taler-harness/src/integrationtests/test-wallet-dbless.ts @@ -25,7 +25,6 @@ import { TalerError, } from "@gnu-taler/taler-util"; import { - applyRunConfigDefaults, CryptoDispatcher, SynchronousCryptoWorkerFactoryPlain, } from "@gnu-taler/taler-wallet-core"; @@ -86,11 +85,10 @@ export async function runWalletDblessTest(t: GlobalTestState) { console.log(exchangeInfo); await checkReserve(http, exchange.baseUrl, reserveKeyPair.pub); - - const defaultConfig = applyRunConfigDefaults(); + const denomselAllowLate = false; const d1 = findDenomOrThrow(exchangeInfo, "TESTKUDOS:8" as AmountString, { - denomselAllowLate: defaultConfig.testing.denomselAllowLate, + denomselAllowLate, }); const coin = await withdrawCoin({ @@ -133,10 +131,10 @@ export async function runWalletDblessTest(t: GlobalTestState) { const refreshDenoms = [ findDenomOrThrow(exchangeInfo, "TESTKUDOS:1" as AmountString, { - denomselAllowLate: defaultConfig.testing.denomselAllowLate, + denomselAllowLate, }), findDenomOrThrow(exchangeInfo, "TESTKUDOS:1" as AmountString, { - denomselAllowLate: defaultConfig.testing.denomselAllowLate, + denomselAllowLate, }), ];