Bug 35962: (bug 35843 follow-up 2) Fix BackgroundJob.t on D10
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(cherry picked from commit d130a6c66b
)
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
This commit is contained in:
parent
715bc1e182
commit
8f78332630
1 changed files with 2 additions and 1 deletions
|
@ -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';
|
||||
|
|
Loading…
Reference in a new issue