We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d836df0 commit 7873346Copy full SHA for 7873346
1 file changed
tests/objectbox-java-test/src/test/java/io/objectbox/query/QueryTest.java
@@ -162,7 +162,7 @@ private void assertThrowsQueryIsClosed(ThrowingRunnable runnable) {
162
public void useAfterStoreClose_failsIfUsingStore() {
163
Query<TestEntity> query = box.query(
164
simpleString.equal("")
165
- .and(stringObjectMap.containsKeyValue("", ""))
+ .and(stringObjectMap.equalKeyValue("", "", StringOrder.CASE_SENSITIVE))
166
.and(simpleInt.equal(0))
167
.and(simpleInt.oneOf(new int[]{0}).alias("oneOf4"))
168
.and(simpleLong.oneOf(new long[]{0}).alias("oneOf8"))
0 commit comments