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

(-)a/t/db_dependent/Koha/SearchEngine/Elasticsearch/QueryBuilder.t (-2 / +1 lines)
Lines 390-396 subtest 'build_query tests' => sub { Link Here
390
    ( undef, $query ) = $qb->build_query_compat( undef, ['"donald duck"'], undef, ['available'] );
390
    ( undef, $query ) = $qb->build_query_compat( undef, ['"donald duck"'], undef, ['available'] );
391
    is(
391
    is(
392
        $query->{query}{query_string}{query},
392
        $query->{query}{query_string}{query},
393
        '("donald duck") AND onloan:false',
393
        '("donald duck") AND available:true',
394
        "query with quotes is unaltered when QueryAutoTruncate is enabled"
394
        "query with quotes is unaltered when QueryAutoTruncate is enabled"
395
    );
395
    );
396
396
397
- 

Return to bug 25375