Skip to content

Commit f6bf80c

Browse files
author
Brian Chen
committed
fix lint
1 parent 8f038fd commit f6bf80c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,8 @@ apiDescribe('Queries', (persistence: boolean) => {
701701
};
702702

703703
await withTestCollection(persistence, testDocs, async coll => {
704-
let expected = { ...testDocs };
704+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
705+
let expected: { [name: string]: any } = { ...testDocs };
705706
delete expected.a;
706707
delete expected.h;
707708
delete expected.i;
@@ -846,7 +847,8 @@ apiDescribe('Queries', (persistence: boolean) => {
846847
};
847848

848849
await withTestCollection(persistence, testDocs, async coll => {
849-
let expected = { ...testDocs };
850+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
851+
let expected: { [name: string]: any } = { ...testDocs };
850852
delete expected.a;
851853
delete expected.c;
852854
delete expected.g;

0 commit comments

Comments
 (0)