From d130a6c66b6cc6fb3221c0ea7e26f2d0825f4f72 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Feb 2024 08:32:31 +0100 Subject: [PATCH] Bug 35962: (bug 35843 follow-up 2) Fix BackgroundJob.t on D10 Signed-off-by: Jonathan Druart --- t/db_dependent/Koha/BackgroundJob.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/BackgroundJob.t b/t/db_dependent/Koha/BackgroundJob.t index a5ca4351bd..5db21a0b34 100755 --- a/t/db_dependent/Koha/BackgroundJob.t +++ b/t/db_dependent/Koha/BackgroundJob.t @@ -80,7 +80,8 @@ subtest 'enqueue() tests' => sub { 'Enqueue BatchUpdateItem without data throws exception'; # The following test needs a mock to trigger the exception - my $mock = Test::MockModule->new('Net::Stomp')->mock( 'send_with_receipt', sub { 0 } ); + my $mock = Test::MockModule->new('Net::Stomp'); + $mock->mock( 'send_with_receipt', sub { 0 } ); throws_ok { Koha::BackgroundJob::MARCImportCommitBatch->new->enqueue } 'Koha::Exceptions::BackgroundJob', 'Enqueue MARCImportCommitBatch with mock throws exception'; -- 2.20.1