@@ -, +, @@ --- t/Koha/Plugin/TestAuth.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/t/Koha/Plugin/TestAuth.pm +++ a/t/Koha/Plugin/TestAuth.pm @@ -38,11 +38,6 @@ sub new { return $self; } -sub configure { - my ($self, $args) = @_; - $self->go_home(); -} - =head2 retrieve_data Just return priority. It overrides the one in Koha::Plugin::Base for the test. @@ -58,6 +53,11 @@ sub retrieve_data { } +sub configure { + my ($self, $args) = @_; + $self->go_home(); +} + =head2 checkpw ($result, cardnumber, $userid) = --