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

(-)a/t/db_dependent/AuthorisedValues.t (-2 / +1 lines)
Lines 122-128 subtest 'search_by_*_field + find_by_koha_field + get_description' => sub { Link Here
122
    plan tests => 5;
122
    plan tests => 5;
123
    my $loc_cat = Koha::AuthorisedValueCategories->find('LOC');
123
    my $loc_cat = Koha::AuthorisedValueCategories->find('LOC');
124
    $loc_cat->delete if $loc_cat;
124
    $loc_cat->delete if $loc_cat;
125
    my $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'c', frameworkcode => '' } );
125
    my $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'c' } );
126
    $mss->delete if $mss;
126
    $mss->delete if $mss;
127
    $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'd', frameworkcode => '' } );
127
    $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'd', frameworkcode => '' } );
128
    $mss->delete if $mss;
128
    $mss->delete if $mss;
129
- 

Return to bug 18748