Skip to content

Commit f9e0707

Browse files
committed
get rid of unnecssary 'type IterationResult' declaration
1 parent 67305ea commit f9e0707

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2077,9 +2077,8 @@ apiDescribe('Queries', (persistence: boolean) => {
20772077

20782078
let attemptNumber = 0;
20792079
while (true) {
2080-
type IterationResult = 'retry' | 'passed';
20812080
attemptNumber++;
2082-
const iterationResult = await withTestCollection<IterationResult>(
2081+
const iterationResult = await withTestCollection<'retry' | 'passed'>(
20832082
persistence,
20842083
testDocs,
20852084
async (coll, db) => {

0 commit comments

Comments
 (0)