Skip to content

Commit 2d1c722

Browse files
committed
yarn prettier
1 parent 6a15468 commit 2d1c722

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

packages/firestore/test/unit/specs/spec_builder.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,7 @@ export class SpecBuilder {
292292
* Registers a previously active target with the test expectations after a
293293
* stream disconnect.
294294
*/
295-
restoreListen(
296-
query: Query,
297-
resumeToken: string
298-
): this {
295+
restoreListen(query: Query, resumeToken: string): this {
299296
const targetId = this.queryMapping.get(queryToTarget(query));
300297

301298
if (isNullOrUndefined(targetId)) {
@@ -767,10 +764,7 @@ export class SpecBuilder {
767764
return this;
768765
}
769766

770-
watchFilters(
771-
queries: Query[],
772-
docs: DocumentKey[] = []
773-
): this {
767+
watchFilters(queries: Query[], docs: DocumentKey[] = []): this {
774768
this.nextStep();
775769
const targetIds = queries.map(query => {
776770
return this.getTargetId(query);

packages/firestore/test/util/spec_test_helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export function encodeWatchChange(
4545
return {
4646
filter: {
4747
targetId: watchChange.targetId,
48-
count: watchChange.existenceFilter.count,
48+
count: watchChange.existenceFilter.count
4949
}
5050
};
5151
}

0 commit comments

Comments
 (0)