@@ -, +, @@ --------- -- this makes sure you have a pre-existing 952$c ACQ record. -- should have ugly message like in comment #0 -- should be green --- t/db_dependent/AuthorisedValues.t | 2 ++ 1 file changed, 2 insertions(+) --- a/t/db_dependent/AuthorisedValues.t +++ a/t/db_dependent/AuthorisedValues.t @@ -124,6 +124,8 @@ subtest 'search_by_*_field + find_by_koha_field + get_description' => sub { $loc_cat->delete if $loc_cat; my $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'c', frameworkcode => '' } ); $mss->delete if $mss; + $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'c', frameworkcode => 'ACQ' } ); + $mss->delete if $mss; $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'd', frameworkcode => '' } ); $mss->delete if $mss; $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => '5', frameworkcode => '' } ); --