aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/taler-harness/src/integrationtests/test-wallet-dbless.ts10
1 files 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
index a089d99b5..1d57e3458 100644
--- 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,
}),
];