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

(-)a/t/db_dependent/ImportBatch.t (-2 / +1 lines)
Lines 333-339 subtest "BatchCommitRecords overlay into framework" => sub { Link Here
333
    t::lib::Mocks::mock_config( 'enable_plugins', 0 );
333
    t::lib::Mocks::mock_config( 'enable_plugins', 0 );
334
    my $mock_import = Test::MockModule->new("C4::ImportBatch");
334
    my $mock_import = Test::MockModule->new("C4::ImportBatch");
335
    my $biblio = $builder->build_sample_biblio;
335
    my $biblio = $builder->build_sample_biblio;
336
    $mock_import->mock( _get_commit_action => sub { return ('replace',undef,$biblio->biblionumber); } );
336
    $mock_import->mock( _get_commit_action => sub { return ('replace','ignore',$biblio->biblionumber); } );
337
337
338
    my $import_batch = {
338
    my $import_batch = {
339
        matcher_id => 2,
339
        matcher_id => 2,
340
- 

Return to bug 15869