@@ -1641,7 +1641,7 @@ describe('MatStepper', () => {
1641
1641
1642
1642
/** Asserts that keyboard interaction works correctly. */
1643
1643
function assertCorrectKeyboardInteraction (
1644
- fixture : ComponentFixture < any > ,
1644
+ fixture : ComponentFixture < unknown > ,
1645
1645
stepHeaders : DebugElement [ ] ,
1646
1646
orientation : StepperOrientation ,
1647
1647
) {
@@ -1742,7 +1742,7 @@ function assertCorrectKeyboardInteraction(
1742
1742
1743
1743
/** Asserts that arrow key direction works correctly in RTL mode. */
1744
1744
function assertArrowKeyInteractionInRtl (
1745
- fixture : ComponentFixture < any > ,
1745
+ fixture : ComponentFixture < unknown > ,
1746
1746
stepHeaders : DebugElement [ ] ,
1747
1747
) {
1748
1748
const stepperComponent = fixture . debugElement . query ( By . directive ( MatStepper ) ) ! . componentInstance ;
@@ -1764,7 +1764,7 @@ function assertArrowKeyInteractionInRtl(
1764
1764
1765
1765
/** Asserts that keyboard interaction works correctly when the user is pressing a modifier key. */
1766
1766
function assertSelectKeyWithModifierInteraction (
1767
- fixture : ComponentFixture < any > ,
1767
+ fixture : ComponentFixture < unknown > ,
1768
1768
stepHeaders : DebugElement [ ] ,
1769
1769
orientation : StepperOrientation ,
1770
1770
selectionKey : number ,
@@ -1823,7 +1823,7 @@ function asyncValidator(minLength: number, validationTrigger: Subject<void>): As
1823
1823
function createComponent < T > (
1824
1824
component : Type < T > ,
1825
1825
providers : Provider [ ] = [ ] ,
1826
- imports : any [ ] = [ ] ,
1826
+ imports : unknown [ ] = [ ] ,
1827
1827
encapsulation ?: ViewEncapsulation ,
1828
1828
declarations = [ component ] ,
1829
1829
) : ComponentFixture < T > {
0 commit comments