Skip to content

Commit

Permalink
chore: update concepts test (#1382)
Browse files Browse the repository at this point in the history
Fixes #1379
  • Loading branch information
kolea2 committed Mar 25, 2024
1 parent 4ae72d3 commit 9818aee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -566,15 +566,15 @@ public void testInequalityRange() {
}

@Test
public void testInequalityInvalid() {
public void testInequalityValid() {
Query<Entity> query =
Query.newEntityQueryBuilder()
.setKind(TASK_CONCEPTS)
.setFilter(
CompositeFilter.and(
PropertyFilter.gt("created", startDate), PropertyFilter.gt("priority", 3)))
.build();
assertInvalidQuery(query);
assertValidQuery(query);
}

@Test
Expand Down

0 comments on commit 9818aee

Please sign in to comment.