We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb62df1 commit 5c11b8aCopy full SHA for 5c11b8a
firebase-firestore/src/test/java/com/google/firebase/firestore/core/FilterTest.java
@@ -89,8 +89,8 @@ public void testCompositeFilterNestedChecks() {
89
90
@Test
91
public void testCanonicalIdOfFlatConjunctions() {
92
- Target target1 = query("col").filter(A).filter(B).filter(C).toTarget();
93
- Target target2 = query("col").filter(andFilters(A, B, C)).toTarget();
94
- assertEquals(target1.getCanonicalId(), target2.getCanonicalId());
+ Query q1 = query("col").filter(A).filter(B).filter(C);
+ Query q2 = query("col").filter(andFilters(A, B, C));
+ assertEquals(q1.getCanonicalId(), q2.getCanonicalId());
95
}
96
0 commit comments