Fixed that RemitteNameMaxLength has been renamed to RecipientNameMaxLength
This commit is contained in:
parent
a4ebdfec8c
commit
a51b0cf323
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue