From 67d2a7f775f555074580853ffdd9ea0cd7cdce85 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 19 Oct 2021 09:25:25 +0200 Subject: [PATCH] Bug 28211: Fix test # Failed test 'Plugin enabled, route defined' # at t/db_dependent/Koha/REST/Plugin/PluginRoutes.t line 125. # Looks like you failed 1 test of 2. 105 $good_plugin = $plugin 106 if $plugin->{metadata}->{description} eq 'Test plugin'; The wrong plugin was considered the good one. --- t/lib/Koha/Plugin/TestItemBarcodeTransform.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/lib/Koha/Plugin/TestItemBarcodeTransform.pm b/t/lib/Koha/Plugin/TestItemBarcodeTransform.pm index 32f0b895500..c653a11c27f 100644 --- a/t/lib/Koha/Plugin/TestItemBarcodeTransform.pm +++ b/t/lib/Koha/Plugin/TestItemBarcodeTransform.pm @@ -15,7 +15,7 @@ our $VERSION = 1.01; our $metadata = { name => 'Test Plugin for item_barcode_transform', author => 'Kyle M Hall', - description => 'Test plugin', + description => 'Test plugin for item_barcode_transform', date_authored => '2021-10-14', date_updated => '2021-10-14', minimum_version => '21.11', -- 2.25.1