diff --git a/ui/BankingUiCommon/src/jvmTest/kotlin/net/dankito/banking/util/InputValidatorTest.kt b/ui/BankingUiCommon/src/jvmTest/kotlin/net/dankito/banking/util/InputValidatorTest.kt index 7a091196..0246b7a1 100644 --- a/ui/BankingUiCommon/src/jvmTest/kotlin/net/dankito/banking/util/InputValidatorTest.kt +++ b/ui/BankingUiCommon/src/jvmTest/kotlin/net/dankito/banking/util/InputValidatorTest.kt @@ -131,7 +131,7 @@ class InputValidatorTest { fun validateRecipientName_TooLong() { // given - val nameWithMaxLength = IntRange(0, InputValidator.RemitteNameMaxLength - 1).map { "a" }.joinToString("") + val nameWithMaxLength = IntRange(0, InputValidator.RecipientNameMaxLength - 1).map { "a" }.joinToString("") val enteredName = nameWithMaxLength + "a" // when