Skip to content

Commit 52b446a

Browse files
committed
fix lint conplain
1 parent d1b36f0 commit 52b446a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/firestore/src/core/firestore_client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ export function firestoreClientRunAggregationQuery(
508508
query: AggregateQuery
509509
): Promise<AggregateQuerySnapshot> {
510510
return client.asyncQueue.enqueue(async () => {
511-
return await getAggregate(query);
511+
return getAggregate(query);
512512
});
513513
}
514514

packages/firestore/src/remote/datastore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ export async function invokeRunAggregationQueryRpc(
246246
datastoreImpl.serializer,
247247
queryToTarget(aggregateQuery.query._query)
248248
);
249-
249+
250250
//while invoking streaming RPC, grpc_connection requires parent in the request
251251
//while rest_connection excludes it
252252
const parent = request.parent;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ apiDescribe('Aggregation query', (persistence: boolean) => {
2929
const testDocs = {
3030
a: { k: 'a', sort: 1 },
3131
b: { k: 'b', sort: 2 },
32-
c: { k: 'c', sort: 2 },
32+
c: { k: 'c', sort: 2 }
3333
};
3434
return withTestCollection(persistence, testDocs, async coll => {
3535
const query_ = query(coll);
3636
const countQuery_ = countQuery(query_);
3737
const snapshot = await getAggregateFromServerDirect(countQuery_);
38-
expect(snapshot.getCount()).to.equal(3)
38+
expect(snapshot.getCount()).to.equal(3);
3939
});
4040
});
4141
});

0 commit comments

Comments
 (0)