From d681e3c859a8559039eb661952170277566b26dd Mon Sep 17 00:00:00 2001 From: Axel Amghar Date: Tue, 23 Apr 2019 14:59:15 +0200 Subject: [PATCH] Bug 20340: add of an empty method configure --- t/Koha/Plugin/TestAuth.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/t/Koha/Plugin/TestAuth.pm b/t/Koha/Plugin/TestAuth.pm index 6c6b9c6..6f26a27 100644 --- a/t/Koha/Plugin/TestAuth.pm +++ b/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) = -- 2.7.4