Bug 29857: (follow-up) Fix t/db_dependent/Koha/Plugins/Plugins.t
authorFridolin Somers <fridolin.somers@biblibre.com>
Wed, 2 Mar 2022 17:57:58 +0000 (07:57 -1000)
committerFridolin Somers <fridolin.somers@biblibre.com>
Wed, 2 Mar 2022 19:40:05 +0000 (09:40 -1000)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
t/db_dependent/Koha/Plugins/Plugins.t

index 14990ad..0360a8a 100755 (executable)
@@ -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);