summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-07-30 11:09:17 +0200
committerms <ms@taler.net>2021-07-30 11:09:17 +0200
commita6016952e6a82ca9457af00f166e28166de67503 (patch)
treefd44c8a17b557a01c142f9c3e63e36ce871ceb8a /packages
parent263b1e77511cb6afa91a40a5576ca0753be9ebc2 (diff)
downloadwallet-core-a6016952e6a82ca9457af00f166e28166de67503.tar.gz
wallet-core-a6016952e6a82ca9457af00f166e28166de67503.tar.bz2
wallet-core-a6016952e6a82ca9457af00f166e28166de67503.zip
fix IBAN generator
Diffstat (limited to 'packages')
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/helpers.ts2
1 files changed, 1 insertions, 1 deletions
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 {