From 7e923e2d8674e90cc3b10bfbcff2676dfb75467d Mon Sep 17 00:00:00 2001 From: Mark Tompsett Date: Wed, 7 Jun 2017 12:53:52 -0400 Subject: [PATCH] Bug 18748: Noisy t/db_dependent/AuthorisedValues.t This noise is from a failure. This patch expands the delete regardless of framework. TEST PLAN --------- prove t/db_dependent/AuthorisedValues.t -- should have ugly message like in comment #0 apply patch prove t/db_dependent/AuthorisedValues.t -- should be green run koha qa test tools Signed-off-by: Lee Jamison Test is green after running as directed by the test plan. --- t/db_dependent/AuthorisedValues.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/AuthorisedValues.t b/t/db_dependent/AuthorisedValues.t index ad5ec60..11e3a1b 100644 --- a/t/db_dependent/AuthorisedValues.t +++ b/t/db_dependent/AuthorisedValues.t @@ -122,7 +122,7 @@ subtest 'search_by_*_field + find_by_koha_field + get_description' => sub { plan tests => 5; my $loc_cat = Koha::AuthorisedValueCategories->find('LOC'); $loc_cat->delete if $loc_cat; - my $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'c', frameworkcode => '' } ); + my $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'c' } ); $mss->delete if $mss; $mss = Koha::MarcSubfieldStructures->search( { tagfield => 952, tagsubfield => 'd', frameworkcode => '' } ); $mss->delete if $mss; -- 2.1.4