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

(-)a/t/db_dependent/Search.t (-3 / +2 lines)
Lines 866-872 if ( $indexing_mode eq 'dom' ) { Link Here
866
                             'label_value' => "Titles" }
866
                             'label_value' => "Titles" }
867
    };
867
    };
868
    delete $expected_facets_info_marc21->{holdingbranch}
868
    delete $expected_facets_info_marc21->{holdingbranch}
869
        if Koha::Libraries->search->count == 1;
869
        if Koha::Libraries->count == 1;
870
    is_deeply( $facets_info, $expected_facets_info_marc21,
870
    is_deeply( $facets_info, $expected_facets_info_marc21,
871
        "_get_facets_info returns the correct data");
871
        "_get_facets_info returns the correct data");
872
872
Lines 962-968 sub run_unimarc_search_tests { Link Here
962
                             'label_value' => "Titles" }
962
                             'label_value' => "Titles" }
963
    };
963
    };
964
    delete $expected_facets_info_unimarc->{holdingbranch}
964
    delete $expected_facets_info_unimarc->{holdingbranch}
965
        if Koha::Libraries->search->count == 1;
965
        if Koha::Libraries->count == 1;
966
    is_deeply( $facets_info, $expected_facets_info_unimarc,
966
    is_deeply( $facets_info, $expected_facets_info_unimarc,
967
        "_get_facets_info returns the correct data");
967
        "_get_facets_info returns the correct data");
968
968
969
- 

Return to bug 19979