File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -292,10 +292,7 @@ export class SpecBuilder {
292
292
* Registers a previously active target with the test expectations after a
293
293
* stream disconnect.
294
294
*/
295
- restoreListen (
296
- query : Query ,
297
- resumeToken : string
298
- ) : this {
295
+ restoreListen ( query : Query , resumeToken : string ) : this {
299
296
const targetId = this . queryMapping . get ( queryToTarget ( query ) ) ;
300
297
301
298
if ( isNullOrUndefined ( targetId ) ) {
@@ -767,10 +764,7 @@ export class SpecBuilder {
767
764
return this ;
768
765
}
769
766
770
- watchFilters (
771
- queries : Query [ ] ,
772
- docs : DocumentKey [ ] = [ ]
773
- ) : this {
767
+ watchFilters ( queries : Query [ ] , docs : DocumentKey [ ] = [ ] ) : this {
774
768
this . nextStep ( ) ;
775
769
const targetIds = queries . map ( query => {
776
770
return this . getTargetId ( query ) ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export function encodeWatchChange(
45
45
return {
46
46
filter : {
47
47
targetId : watchChange . targetId ,
48
- count : watchChange . existenceFilter . count ,
48
+ count : watchChange . existenceFilter . count
49
49
}
50
50
} ;
51
51
}
You can’t perform that action at this time.
0 commit comments