Skip to content

Commit

Permalink
LPS-139103 Update unit test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Preston-Crary authored and brianchandotcom committed Sep 13, 2021
1 parent 52968f9 commit d209ed3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1140,13 +1140,13 @@ public void testSimpleSelect() {
"MainExample.name = ? and MainExample.mainExampleId > ?",
predicate.toString());

predicate = predicate.and(null);
predicate = predicate.and((Expression<Boolean>)null);

Assert.assertEquals(
"MainExample.name = ? and MainExample.mainExampleId > ?",
predicate.toString());

predicate = predicate.or(null);
predicate = predicate.or((Expression<Boolean>)null);

Assert.assertEquals(
"MainExample.name = ? and MainExample.mainExampleId > ?",
Expand Down

0 comments on commit d209ed3

Please sign in to comment.