diff options
author | Florian Dold <florian@dold.me> | 2024-09-12 12:47:59 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2024-09-12 12:47:59 +0200 |
commit | b39164c4a74cc9312c83eda1eb83b11fb1d73159 (patch) | |
tree | ccb2207bb8fc30971174f9ed49b01fedabfbae4c /packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts | |
parent | c1c0603b3a3684c541e22f55e83323a795f134eb (diff) |
harness: new test for KYC auth transfer
Diffstat (limited to 'packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts')
-rw-r--r-- | packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts b/packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts index 7a6c9e6d2..70f8989c8 100644 --- a/packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts +++ b/packages/taler-harness/src/integrationtests/test-wallet-blocked-deposit.ts @@ -26,7 +26,7 @@ import { } from "@gnu-taler/taler-util"; import { WalletApiOperation } from "@gnu-taler/taler-wallet-core"; import { CoinConfig } from "../harness/denomStructures.js"; -import { GlobalTestState, generateRandomPayto } from "../harness/harness.js"; +import { GlobalTestState, getTestHarnessPaytoForLabel } from "../harness/harness.js"; import { createSimpleTestkudosEnvironmentV3, createWalletDaemonWithClient, @@ -104,7 +104,7 @@ export async function runWalletBlockedDepositTest(t: GlobalTestState) { }, }); - const userPayto = generateRandomPayto("foo"); + const userPayto = getTestHarnessPaytoForLabel("foo"); const bal = await w1.call(WalletApiOperation.GetBalances, {}); console.log(`balance: ${j2s(bal)}`); |