From 6ccf04661a23c57e36875267fdec068c3346c49e Mon Sep 17 00:00:00 2001
From: Fridolin Somers <fridolin.somers@biblibre.com>
Date: Wed, 2 Mar 2022 07:57:58 -1000
Subject: [PATCH] Bug 29857: (follow-up) Fix
 t/db_dependent/Koha/Plugins/Plugins.t

---
 t/db_dependent/Koha/Plugins/Plugins.t | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/t/db_dependent/Koha/Plugins/Plugins.t b/t/db_dependent/Koha/Plugins/Plugins.t
index 14990ad09a..0360a8ab87 100755
--- a/t/db_dependent/Koha/Plugins/Plugins.t
+++ b/t/db_dependent/Koha/Plugins/Plugins.t
@@ -108,15 +108,15 @@ subtest 'more call() tests' => sub {
     my $bc = 1;
     warnings_are
         { Koha::Plugins->call('item_barcode_transform', \$bc); }
-        [ 'Plugin error (Test Plugin): item_barcode_transform called with parameter: 1',
-          'Plugin error (Test Plugin for item_barcode_transform): item_barcode_transform called with parameter: 2' ];
+        [ qq{Plugin error (Test Plugin): Exception 'Koha::Exception' thrown 'item_barcode_transform called with parameter: 1'\n},
+          qq{Plugin error (Test Plugin for item_barcode_transform): Exception 'Koha::Exception' thrown 'item_barcode_transform called with parameter: 2'\n} ];
     is( $bc, 8, "Got expected response" );
 
     my $cn = 'abcd';
     warnings_are
         { Koha::Plugins->call('item_barcode_transform', \$bc); }
-        [ 'Plugin error (Test Plugin): item_barcode_transform called with parameter: 8',
-          'Plugin error (Test Plugin for item_barcode_transform): item_barcode_transform called with parameter: 16' ];
+        [ qq{Plugin error (Test Plugin): Exception 'Koha::Exception' thrown 'item_barcode_transform called with parameter: 8'\n},
+          qq{Plugin error (Test Plugin for item_barcode_transform): Exception 'Koha::Exception' thrown 'item_barcode_transform called with parameter: 16'\n} ];
     is( $cn, 'abcd', "Got expected response" );
 
     t::lib::Mocks::mock_config('enable_plugins', 0);
-- 
2.35.1