From 882ec8a82e6e976f526f21e1bc342b1f6b8f8207 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 21 Nov 2019 08:08:38 -0500 Subject: [PATCH] Bug 24031: Fix warnings Signed-off-by: Kyle M Hall Signed-off-by: Pasi Kallinen Signed-off-by: Kyle M Hall --- t/db_dependent/Koha/Plugins/Plugins.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/db_dependent/Koha/Plugins/Plugins.t b/t/db_dependent/Koha/Plugins/Plugins.t index ed19ecf204..e6a353ceee 100755 --- a/t/db_dependent/Koha/Plugins/Plugins.t +++ b/t/db_dependent/Koha/Plugins/Plugins.t @@ -65,9 +65,9 @@ subtest 'call() tests' => sub { is_deeply(\@responses, $expected, 'call() should return all responses from plugins'); # Make sure parameters are correctly passed to the plugin method - my @responses = Koha::Plugins->call('check_password', { password => '1234' }); + @responses = Koha::Plugins->call('check_password', { password => '1234' }); - my $expected = [ { error => 0 } ]; + $expected = [ { error => 0 } ]; is_deeply(\@responses, $expected, 'call() should return all responses from plugins'); $schema->storage->txn_rollback; -- 2.24.1 (Apple Git-126)