Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgotteiner committed Nov 6, 2024
1 parent b632d4c commit 5c7f349
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ public void testEQ() {
List.of(MetadataField.text("country")));

// country == "BG"
String expected = "meta_country eq 'BG'";
String vectorExpr = converter.convertExpression(new Expression(EQ, new Key("country"), new Value("BG")));
assertThat(vectorExpr).isEqualTo("meta_country eq 'BG'");
assertThat(vectorExpr).isEqualTo(expected);
}

@Test
Expand Down

0 comments on commit 5c7f349

Please sign in to comment.