Skip to content

Commit bec7cb0

Browse files
committed
chore(*): remove static prop from tests
1 parent bdca07f commit bec7cb0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/combo/combo.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3680,7 +3680,7 @@ export class SimpleBindComboComponent implements OnInit {
36803680
})
36813681
class DensityInputComponent {
36823682
public density = DisplayDensity.cosy;
3683-
@ViewChild('combo', { read: IgxComboComponent, static: true })
3683+
@ViewChild('combo', { read: IgxComboComponent })
36843684
public combo: IgxComboComponent;
36853685
public items = fiftyItems;
36863686
}
@@ -3695,7 +3695,7 @@ class DensityInputComponent {
36953695
}]
36963696
})
36973697
class DensityParentComponent {
3698-
@ViewChild('combo', { read: IgxComboComponent, static: true })
3698+
@ViewChild('combo', { read: IgxComboComponent })
36993699
public combo: IgxComboComponent;
37003700
public items = fiftyItems;
37013701
}

projects/igniteui-angular/src/lib/drop-down/drop-down.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1925,7 +1925,7 @@ class GroupDropDownComponent {
19251925
})
19261926
class DensityInputComponent {
19271927
public density = DisplayDensity.cosy;
1928-
@ViewChild('dropdown', { read: IgxDropDownComponent, static: true })
1928+
@ViewChild('dropdown', { read: IgxDropDownComponent })
19291929
public dropdown: IgxDropDownComponent;
19301930
public items = fiftyItems;
19311931
}
@@ -1943,7 +1943,7 @@ class DensityInputComponent {
19431943
}]
19441944
})
19451945
class DensityParentComponent {
1946-
@ViewChild('dropdown', { read: IgxDropDownComponent, static: true })
1946+
@ViewChild('dropdown', { read: IgxDropDownComponent })
19471947
public dropdown: IgxDropDownComponent;
19481948
public items = fiftyItems;
19491949
}

0 commit comments

Comments
 (0)