@@ -, +, @@ - Apply the tests patch - Run: $ kshell k$ prove t/db_dependent/Koha/Patrons.t - Apply this patch - Run: k$ prove t/db_dependent/Koha/Patrons.t -Sign off :-D --- Koha/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Patron.pm +++ a/Koha/Patron.pm @@ -703,7 +703,7 @@ sub set_password { my $password_length = length($password); Koha::Exceptions::Password::TooShort->throw( - { length => $password_length, min_length => $min_length } ); + length => $password_length, min_length => $min_length ); } elsif ( $error eq 'has_whitespaces' ) { Koha::Exceptions::Password::WhitespaceCharacters->throw(); --