Skip to content

Commit 8b0c309

Browse files
committed
format
1 parent 21b3620 commit 8b0c309

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/firestore/src/platform/text_serializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2022 Google LLC
3+
* Copyright 2023 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

packages/firestore/src/remote/watch_change.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ export class WatchChangeAggregator {
462462

463463
let bloomFilter: BloomFilter;
464464
try {
465-
// BloomFilter throws error if the inputs are invalid
465+
// BloomFilter throws error if the inputs are invalid.
466466
bloomFilter = new BloomFilter(normalizedBitmap, padding, hashCount);
467467
} catch (err) {
468468
if (err instanceof BloomFilterError) {

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,6 @@ describeSpec('Existence Filters:', [], () => {
305305
// BloomFilter correctly identifies docC is deleted, but yields false
306306
// positive results for docB. Re-run query is triggered.
307307
.expectEvents(query1, { fromCache: true })
308-
.watchRemoves(query1) // Acks removal of query.
309308
.expectActiveTargets({ query: query1, resumeToken: '' })
310309
);
311310
}

0 commit comments

Comments
 (0)