Skip to content

Commit 9add7c8

Browse files
committed
Add missing cases.
1 parent d55217d commit 9add7c8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/firestore/test/integration/api/query.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1804,6 +1804,7 @@ apiDescribe('Queries', persistence => {
18041804

18051805
let testQuery = query(coll, where('zip', '!=', 98101));
18061806
await checkOnlineAndOfflineResultsMatch(
1807+
coll,
18071808
testQuery,
18081809
'a',
18091810
'b',
@@ -1816,6 +1817,7 @@ apiDescribe('Queries', persistence => {
18161817

18171818
testQuery = query(coll, where('zip', '!=', Number.NaN));
18181819
await checkOnlineAndOfflineResultsMatch(
1820+
coll,
18191821
testQuery,
18201822
'b',
18211823
'c',
@@ -1828,6 +1830,7 @@ apiDescribe('Queries', persistence => {
18281830

18291831
testQuery = query(coll, where('zip', '!=', null));
18301832
await checkOnlineAndOfflineResultsMatch(
1833+
coll,
18311834
testQuery,
18321835
'a',
18331836
'b',
@@ -1864,6 +1867,7 @@ apiDescribe('Queries', persistence => {
18641867
where('zip', 'not-in', [98101, 98103, [98101, 98102]])
18651868
);
18661869
await checkOnlineAndOfflineResultsMatch(
1870+
coll,
18671871
testQuery,
18681872
'a',
18691873
'b',
@@ -1874,7 +1878,7 @@ apiDescribe('Queries', persistence => {
18741878
);
18751879

18761880
testQuery = query(coll, where('zip', 'not-in', [null]));
1877-
await checkOnlineAndOfflineResultsMatch(testQuery);
1881+
await checkOnlineAndOfflineResultsMatch(coll, testQuery);
18781882
});
18791883
});
18801884
});

0 commit comments

Comments
 (0)