Skip to content

Commit

Permalink
Fixed using incorrect matching rule in TestMisc
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Tkáčik <tonydamage@gmail.com>
  • Loading branch information
tonydamage committed Mar 7, 2024
1 parent 1ec2237 commit ee9a6f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public void test216SearchUsersMatchingRulesStringNorm() throws Exception {
ObjectQuery query = queryFor(UserType.class)
.item(UserType.F_EMPLOYEE_NUMBER)
.eq("EMP1234") // Real value is "emp123"
.matchingNorm()
.matchingCaseIgnore()
.build();

when();
Expand Down

0 comments on commit ee9a6f2

Please sign in to comment.