File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export class MatLegacyCellHarness extends _MatCellHarnessBase {
20
20
* @return a `HarnessPredicate` configured with the given options.
21
21
*/
22
22
static with ( options : CellHarnessFilters = { } ) : HarnessPredicate < MatLegacyCellHarness > {
23
- return _MatCellHarnessBase . _getCellPredicate ( MatLegacyCellHarness , options ) ;
23
+ return _MatCellHarnessBase . _getCellPredicate ( this , options ) ;
24
24
}
25
25
}
26
26
@@ -36,7 +36,7 @@ export class MatLegacyHeaderCellHarness extends _MatCellHarnessBase {
36
36
* @return a `HarnessPredicate` configured with the given options.
37
37
*/
38
38
static with ( options : CellHarnessFilters = { } ) : HarnessPredicate < MatLegacyHeaderCellHarness > {
39
- return _MatCellHarnessBase . _getCellPredicate ( MatLegacyHeaderCellHarness , options ) ;
39
+ return _MatCellHarnessBase . _getCellPredicate ( this , options ) ;
40
40
}
41
41
}
42
42
@@ -52,6 +52,6 @@ export class MatLegacyFooterCellHarness extends _MatCellHarnessBase {
52
52
* @return a `HarnessPredicate` configured with the given options.
53
53
*/
54
54
static with ( options : CellHarnessFilters = { } ) : HarnessPredicate < MatLegacyFooterCellHarness > {
55
- return _MatCellHarnessBase . _getCellPredicate ( MatLegacyFooterCellHarness , options ) ;
55
+ return _MatCellHarnessBase . _getCellPredicate ( this , options ) ;
56
56
}
57
57
}
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export class MatCellHarness extends _MatCellHarnessBase {
64
64
* @return a `HarnessPredicate` configured with the given options.
65
65
*/
66
66
static with ( options : CellHarnessFilters = { } ) : HarnessPredicate < MatCellHarness > {
67
- return _MatCellHarnessBase . _getCellPredicate ( MatCellHarness , options ) ;
67
+ return _MatCellHarnessBase . _getCellPredicate ( this , options ) ;
68
68
}
69
69
}
70
70
@@ -80,7 +80,7 @@ export class MatHeaderCellHarness extends _MatCellHarnessBase {
80
80
* @return a `HarnessPredicate` configured with the given options.
81
81
*/
82
82
static with ( options : CellHarnessFilters = { } ) : HarnessPredicate < MatHeaderCellHarness > {
83
- return _MatCellHarnessBase . _getCellPredicate ( MatHeaderCellHarness , options ) ;
83
+ return _MatCellHarnessBase . _getCellPredicate ( this , options ) ;
84
84
}
85
85
}
86
86
@@ -96,6 +96,6 @@ export class MatFooterCellHarness extends _MatCellHarnessBase {
96
96
* @return a `HarnessPredicate` configured with the given options.
97
97
*/
98
98
static with ( options : CellHarnessFilters = { } ) : HarnessPredicate < MatFooterCellHarness > {
99
- return _MatCellHarnessBase . _getCellPredicate ( MatFooterCellHarness , options ) ;
99
+ return _MatCellHarnessBase . _getCellPredicate ( this , options ) ;
100
100
}
101
101
}
You can’t perform that action at this time.
0 commit comments