Skip to content

Commit

Permalink
SqaleRepoSearchTest: used shorter version of fluent .matches(localPart)
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Jul 7, 2022
1 parent 6f5840a commit 2f7c7d0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1851,10 +1851,10 @@ public void test568SearchObjectWithExtensionPolyStringComplexIgnoreCaseCompariso
f -> f.not().block()
// both AND parts must match user1, this ine is norm, so -- is ignored
.item(UserType.F_EXTENSION, new QName("poly")).ge("pOlY--vAlUe")
.matching(new QName(PolyStringItemFilterProcessor.NORM_IGNORE_CASE))
.matching(PolyStringItemFilterProcessor.NORM_IGNORE_CASE)
.and()
.item(UserType.F_EXTENSION, new QName("poly")).le("pOlY-vAlUe")
.matching(new QName(PolyStringItemFilterProcessor.ORIG_IGNORE_CASE))
.matching(PolyStringItemFilterProcessor.ORIG_IGNORE_CASE)
.endBlock(),
creatorOid, modifierOid, user2Oid, user3Oid, user4Oid);
}
Expand Down

0 comments on commit 2f7c7d0

Please sign in to comment.