Fixed that RemitteNameMaxLength has been renamed to RecipientNameMaxLength

This commit is contained in:
dankito 2021-01-14 02:39:07 +01:00
parent a4ebdfec8c
commit a51b0cf323
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ class InputValidatorTest {
fun validateRecipientName_TooLong() { fun validateRecipientName_TooLong() {
// given // 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" val enteredName = nameWithMaxLength + "a"
// when // when