Skip to content

Commit

Permalink
test: Fixed IN query test
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Ruaux committed Sep 30, 2022
1 parent c47d713 commit c82b19d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public void testBuildQueryIn() {
Domain.create(ValueSet.ofRanges(equal(createUnboundedVarcharType(), utf8Slice("hello")),
equal(createUnboundedVarcharType(), utf8Slice("world"))), false)));
String query = new RediSearchQueryBuilder().buildQuery(tupleDomain);
String expected = "(@col2:{world}|@col2:{hello})";
String expected = "@col2:{world | hello}";
assertEquals(query, expected);

}
Expand Down

0 comments on commit c82b19d

Please sign in to comment.