From fd2bef01ba028252d1ca18d07c6c27545b12d425 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Mon, 23 Sep 2013 09:33:52 +0200 Subject: [PATCH] Fix test --- test/test_rpn2solr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_rpn2solr.c b/test/test_rpn2solr.c index e3c3add..dfaad4a 100644 --- a/test/test_rpn2solr.c +++ b/test/test_rpn2solr.c @@ -64,7 +64,7 @@ static void tst1(void) YAZ_CHECK(compare(ct, "@or a @and b c", "a OR (b AND c)")); YAZ_CHECK(compare(ct, "@or @and a b @and c d", "(a AND b) OR (c AND d)")); YAZ_CHECK(compare(ct, "@or @or a b @or c d", "(a OR b) OR (c OR d)")); - YAZ_CHECK(compare(ct, "@or @or @or a b @or c d @or e f", "(a OR b) OR (c OR d)")); + YAZ_CHECK(compare(ct, "@or @or @or a b @or c d @or e f", "((a OR b) OR (c OR d)) OR (e OR f)")); YAZ_CHECK(compare(ct, "@and @and a b @and c d", "(a AND b) AND (c AND d)")); YAZ_CHECK(compare(ct, "@attr 1=field abc", "field:abc")); YAZ_CHECK(compare(ct, "@attr 1=field \"a b c\"", "field:\"a b c\"")); -- 1.7.10.4