From 9e0d32a915cef9be16f21e066c5e5beff17f52ab 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 --- 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 a5ca4351bdc..5db21a0b34a 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.34.1