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

(-)a/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t (-2 / +2 lines)
Lines 103-109 $se->mock( 'get_elasticsearch_mappings', sub { Link Here
103
103
104
subtest 'build_authorities_query_compat() tests' => sub {
104
subtest 'build_authorities_query_compat() tests' => sub {
105
105
106
    plan tests => 57;
106
    plan tests => 65;
107
107
108
    my $qb;
108
    my $qb;
109
109
Lines 124-129 subtest 'build_authorities_query_compat() tests' => sub { Link Here
124
                "a*");
124
                "a*");
125
        }
125
        }
126
        is( $query->{query}->{bool}->{must}[0]->{query_string}->{analyze_wildcard}, JSON::true, 'Set analyze_wildcard true' );
126
        is( $query->{query}->{bool}->{must}[0]->{query_string}->{analyze_wildcard}, JSON::true, 'Set analyze_wildcard true' );
127
        is( $query->{query}->{bool}->{must}[0]->{query_string}->{lenient}, JSON::true, 'Set lenient true' );
127
    }
128
    }
128
129
129
    $search_term = 'Donald Duck';
130
    $search_term = 'Donald Duck';
130
- 

Return to bug 27724