From b114e80ed29a8ea15543cc256957e04f5b31c115 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Wed, 2 Mar 2022 08:52:54 -1000 Subject: [PATCH] Bug 25616: [21.11.x] (follow-up) Fix t/Search.t --- t/Search.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/Search.t b/t/Search.t index 11d6eb54b7..4cde2c3ddf 100755 --- a/t/Search.t +++ b/t/Search.t @@ -87,11 +87,11 @@ subtest "_build_initial_query tests" => sub { ($query,$query_cgi,$query_desc,$previous_operand) = C4::Search::_build_initial_query($params); - is( $query, "query and parsed_operand", + is( $query, "query AND parsed_operand", "\$query built correctly (no operator)"); - is( $query_cgi, "query_cgi&op=%20and%20&idx=index&q=original_operand", + is( $query_cgi, "query_cgi&op=%20AND%20&idx=index&q=original_operand", "\$query_cgi built correctly (no operator)"); - is( $query_desc, "query_desc and index_plus original_operand", + is( $query_desc, "query_desc AND index_plus original_operand", "\$query_desc build correctly (no operator)"); is( $previous_operand, "previous_operand", "\$query build correctly (no operator)"); -- 2.35.1