From d54b36218955506606992bca6f05473a4e026bc5 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Tue, 16 Jan 2018 14:28:36 +0100 Subject: [PATCH] Bug 19979: Fix get_facets_info test in Search.t The test should remove the holdingbranch key in the expected results when there is only one branch. See the logic in C4::Koha. Test plan: [1] Run Search.t on a database with multiple branches. [2] Run Search.t on a database with one branch. Without this patch the test would fail: Failed test '_get_facets_info returns the correct data'. Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart --- t/db_dependent/Search.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/t/db_dependent/Search.t b/t/db_dependent/Search.t index ba277bc1d9..ba5e5311df 100644 --- a/t/db_dependent/Search.t +++ b/t/db_dependent/Search.t @@ -865,6 +865,8 @@ if ( $indexing_mode eq 'dom' ) { 'su-ut' => { 'expanded' => undef, 'label_value' => "Titles" } }; + delete $expected_facets_info_marc21->{holdingbranch} + if Koha::Libraries->search->count == 1; is_deeply( $facets_info, $expected_facets_info_marc21, "_get_facets_info returns the correct data"); @@ -959,6 +961,8 @@ sub run_unimarc_search_tests { 'su-ut' => { 'expanded' => undef, 'label_value' => "Titles" } }; + delete $expected_facets_info_unimarc->{holdingbranch} + if Koha::Libraries->search->count == 1; is_deeply( $facets_info, $expected_facets_info_unimarc, "_get_facets_info returns the correct data"); -- 2.11.0