summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core/src/operations/testing.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-core/src/operations/testing.ts')
-rw-r--r--packages/taler-wallet-core/src/operations/testing.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-wallet-core/src/operations/testing.ts b/packages/taler-wallet-core/src/operations/testing.ts
index 71cee1f3a..3ccfafc93 100644
--- a/packages/taler-wallet-core/src/operations/testing.ts
+++ b/packages/taler-wallet-core/src/operations/testing.ts
@@ -112,7 +112,7 @@ async function createBankWithdrawalUri(
},
},
);
- const respJson = await readSuccessResponseJsonOrThrow(resp, codecForAny);
+ const respJson = await readSuccessResponseJsonOrThrow(resp, codecForAny());
return respJson;
}
@@ -135,7 +135,7 @@ async function confirmBankWithdrawalUri(
},
},
);
- await readSuccessResponseJsonOrThrow(resp, codecForAny);
+ await readSuccessResponseJsonOrThrow(resp, codecForAny());
return;
}