Skip to content

Commit 367d9a3

Browse files
committed
prettier.
1 parent beec423 commit 367d9a3

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

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

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2153,10 +2153,7 @@ apiDescribe('Queries', persistence => {
21532153
coll,
21542154
and(
21552155
where('a', 'in', [2, 3]),
2156-
or(
2157-
where('b', 'array-contains-any', [0, 7]),
2158-
where('c', '==', 20)
2159-
)
2156+
or(where('b', 'array-contains-any', [0, 7]), where('c', '==', 20))
21602157
)
21612158
),
21622159
'doc3',
@@ -2259,21 +2256,15 @@ apiDescribe('Queries', persistence => {
22592256
return withTestCollection(persistence, testDocs, async coll => {
22602257
// Two IN operations on different fields with disjunction.
22612258
await checkOnlineAndOfflineResultsMatch(
2262-
query(
2263-
coll,
2264-
or(where('a', 'in', [2, 3]), where('b', 'in', [0, 2])),
2265-
),
2259+
query(coll, or(where('a', 'in', [2, 3]), where('b', 'in', [0, 2]))),
22662260
'doc1',
22672261
'doc3',
22682262
'doc6'
22692263
);
22702264

22712265
// Two IN operations on different fields with conjunction.
22722266
await checkOnlineAndOfflineResultsMatch(
2273-
query(
2274-
coll,
2275-
and(where('a', 'in', [2, 3]), where('b', 'in', [0, 2])),
2276-
),
2267+
query(coll, and(where('a', 'in', [2, 3]), where('b', 'in', [0, 2]))),
22772268
'doc3'
22782269
);
22792270

0 commit comments

Comments
 (0)