Skip to content

Commit 4cb8e3f

Browse files
committed
Update query.test.ts
1 parent 53703fd commit 4cb8e3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1620,9 +1620,9 @@ apiDescribe('Queries', (persistence: boolean) => {
16201620
(persistence ? it.skip : it)(
16211621
'resuming a query should remove deleted documents indicated by existence filter',
16221622
() => {
1623-
const testDocs = {};
1623+
const testDocs: { [key: string]: object } = {};
16241624
for (let i = 1; i <= 100; i++) {
1625-
Object.assign(testDocs, { ['doc' + i]: { key: i } });
1625+
testDocs['doc' + i] = { key: i };
16261626
}
16271627
return withTestCollection(persistence, testDocs, async (coll, db) => {
16281628
const snapshot1 = await getDocs(coll);

0 commit comments

Comments
 (0)