Skip to content

Commit

Permalink
chore: update concepts test (googleapis#1382)
Browse files Browse the repository at this point in the history
Fixes googleapis#1379

(cherry picked from commit 9818aee)
  • Loading branch information
kolea2 committed Apr 18, 2024
1 parent a0b7f86 commit 2436c37
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -575,15 +575,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 2436c37

Please sign in to comment.