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

(-)a/t/db_dependent/Authority/Merge.t (-2 / +1 lines)
Lines 353-359 subtest "Graceful resolution of missing reporting tag" => sub { Link Here
353
353
354
    # Merge
354
    # Merge
355
    merge({ mergefrom => $id1, MARCfrom => $authmarc, mergeto => $id2, MARCto => $authmarc, biblionumbers => [ $biblionumber ] });
355
    merge({ mergefrom => $id1, MARCfrom => $authmarc, mergeto => $id2, MARCto => $authmarc, biblionumbers => [ $biblionumber ] });
356
    $biblio = C4::Biblio::GetMarcBiblio( $biblionumber );
356
    $biblio = C4::Biblio::GetMarcBiblio({ biblionumber => $biblionumber });
357
    is( $biblio->subfield('612', '9'), $id2, 'id2 saved in $9' );
357
    is( $biblio->subfield('612', '9'), $id2, 'id2 saved in $9' );
358
    is( $biblio->subfield('612', 'a'), ' ', 'Kept an empty $a too' );
358
    is( $biblio->subfield('612', 'a'), ' ', 'Kept an empty $a too' );
359
359
360
- 

Return to bug 17380