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

(-)a/t/db_dependent/Koha/Biblio.t (-2 / +1 lines)
Lines 135-141 subtest 'get_coins and get_openurl' => sub { Link Here
135
135
136
    my $record = MARC::Record->new();
136
    my $record = MARC::Record->new();
137
    $record->append_fields( MARC::Field->new('100','','','a' => 'Author 2'), MARC::Field->new('880','','','a' => 'Something') );
137
    $record->append_fields( MARC::Field->new('100','','','a' => 'Author 2'), MARC::Field->new('880','','','a' => 'Something') );
138
    my $biblionumber = C4::Biblio::AddBiblio($record, '');
138
    my ( $biblionumber ) = C4::Biblio::AddBiblio($record, '');
139
    my $biblio_no_title = Koha::Biblios->find($biblionumber);
139
    my $biblio_no_title = Koha::Biblios->find($biblionumber);
140
    is(
140
    is(
141
        $biblio_no_title->get_coins,
141
        $biblio_no_title->get_coins,
142
- 

Return to bug 25913