fix IBAN generator

This commit is contained in:
ms 2021-07-30 11:09:17 +02:00
parent 263b1e7751
commit a6016952e6
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F

View File

@ -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 {