Skip to content

Commit 130b2f8

Browse files
tests: fix
1 parent f7df63c commit 130b2f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/firestore/e2e/Query/where.or.filter.e2e.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1524,8 +1524,8 @@ describe('firestore().collection().where(OR Filters)', function () {
15241524
const snapshot = await query(
15251525
colRef,
15261526
or(
1527-
and(where('foo.bar', '!=', 1), where('differentField', '>', 2)),
1528-
and(where('foo.bar', '!=', 1), where('differentField', '>', 2)),
1527+
and(where('foo.bar', '>', 123), where('bar', '>', 123)),
1528+
and(where('foo.bar', '!=', 1), where('bar', '<', 2)),
15291529
),
15301530
).get();
15311531

0 commit comments

Comments
 (0)