From a6016952e6a82ca9457af00f166e28166de67503 Mon Sep 17 00:00:00 2001 From: ms Date: Fri, 30 Jul 2021 11:09:17 +0200 Subject: [PATCH] fix IBAN generator --- packages/taler-wallet-cli/src/integrationtests/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/taler-wallet-cli/src/integrationtests/helpers.ts b/packages/taler-wallet-cli/src/integrationtests/helpers.ts index 215c0629f..1fdc36788 100644 --- a/packages/taler-wallet-cli/src/integrationtests/helpers.ts +++ b/packages/taler-wallet-cli/src/integrationtests/helpers.ts @@ -65,7 +65,7 @@ export interface SimpleTestEnvironment { export function getRandomIban(countryCode: string): string { return `${countryCode}715001051796${(Math.random() * 100000000) .toString() - .substring(0, 8)}`; + .substring(0, 6)}`; } export function getRandomString(): string {