View | Details | Raw Unified | Return to bug 27317
Collapse All | Expand All

(-)a/t/db_dependent/Koha/BackgroundJobs.t (-2 / +1 lines)
Lines 73-79 $new_job->status('new')->store; Link Here
73
$new_job =
73
$new_job =
74
  t::lib::Koha::BackgroundJob::BatchTest->process( { job_id => $new_job->id } );
74
  t::lib::Koha::BackgroundJob::BatchTest->process( { job_id => $new_job->id } );
75
is( $new_job->status,             "finished", 'job is new finished!' );
75
is( $new_job->status,             "finished", 'job is new finished!' );
76
is( scalar( $new_job->messages ), 10,         '10 messages generated' );
76
is( scalar( @{ $new_job->messages } ), 10,    '10 messages generated' );
77
is_deeply(
77
is_deeply(
78
    $new_job->report,
78
    $new_job->report,
79
    { total_records => 10, total_success => 10 },
79
    { total_records => 10, total_success => 10 },
80
- 

Return to bug 27317