Skip to content

Commit df54a82

Browse files
Tests: make contains unicode test actually look inside the string
1 parent 2916d27 commit df54a82

File tree

1 file changed

+1
-1
lines changed
  • tests/objectbox-java-test/src/test/java/io/objectbox/query

1 file changed

+1
-1
lines changed

tests/objectbox-java-test/src/test/java/io/objectbox/query/QueryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public void testString() {
499499
assertEquals(2, contains.count());
500500
}
501501
// Verify case-sensitive setting has no side effects for non-ASCII characters
502-
box.put(createTestEntity("Îñţérñåţîöñåļîžåţîờñ is key", 6));
502+
box.put(createTestEntity("Note that Îñţérñåţîöñåļîžåţîờñ is key", 6));
503503
try (Query<TestEntity> contains = box.query()
504504
.contains(simpleString, "Îñţérñåţîöñåļîžåţîờñ", StringOrder.CASE_SENSITIVE)
505505
.build()) {

0 commit comments

Comments
 (0)