@@ -, +, @@ --- t/db_dependent/Auth.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/t/db_dependent/Auth.t +++ a/t/db_dependent/Auth.t @@ -122,7 +122,7 @@ subtest 'track_login_daily tests' => sub { subtest 'no_set_userenv parameter tests' => sub { - plan tests => 7; + plan tests => 13; my $library = $builder->build_object( { class => 'Koha::Libraries' } ); my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); @@ -151,7 +151,7 @@ subtest 'no_set_userenv parameter tests' => sub { is( $result[0], 1, 'With TestAuth plugin, checkpw returns 1' ); is( $result[1], 'test', 'With TestAuth plugin, checkpw returns test cardnumber' ); is( $result[2], 'test', 'With TestAuth plugin, checkpw returns test userid' ); -} +}; subtest 'checkpw lockout tests' => sub { --