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

(-)a/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t (-2 / +2 lines)
Lines 82-88 $se->mock( 'get_elasticsearch_mappings', sub { Link Here
82
});
82
});
83
83
84
subtest 'build_authorities_query_compat() tests' => sub {
84
subtest 'build_authorities_query_compat() tests' => sub {
85
    plan tests => 36;
85
    plan tests => 44;
86
86
87
    my $qb;
87
    my $qb;
88
88
Lines 102-107 subtest 'build_authorities_query_compat() tests' => sub { Link Here
102
            is( $query->{query}->{bool}->{must}[0]->{query_string}->{query},
102
            is( $query->{query}->{bool}->{must}[0]->{query_string}->{query},
103
                "a*");
103
                "a*");
104
        }
104
        }
105
        is( $query->{query}->{bool}->{must}[0]->{query_string}->{analyze_wildcard}, JSON::true, 'Set analyze_wildcard true' );
105
    }
106
    }
106
107
107
    $search_term = 'Donald Duck';
108
    $search_term = 'Donald Duck';
108
- 

Return to bug 22997