Skip to content

Commit

Permalink
[FIX-eclipsesource#2336] Fix build of test code.
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentgrangier committed May 17, 2024
1 parent 47866a8 commit 0f15451
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/angular-material/test/common/boolean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export const booleanInputEventTest =
let fixture: ComponentFixture<any>;
let checkboxNativeElement: HTMLElement;
let checkboxInstance: any;
let component: C;
let component: C & { onChange(evt: string): void };
let elementToClick: any;

baseSetup(testConfig);
Expand Down
2 changes: 1 addition & 1 deletion packages/angular-material/test/common/number.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export const numberInputEventTest =
() => {
let fixture: ComponentFixture<any>;
let numberNativeElement: any;
let component: C;
let component: C & { onChange(evt: string): void };

baseSetup(testConfig);

Expand Down
2 changes: 1 addition & 1 deletion packages/angular-material/test/common/range.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ export const rangeInputEventTest =
) =>
() => {
let fixture: ComponentFixture<any>;
let component: C;
let component: C & { onChange(evt: string): void };

baseSetup(testConfig);

Expand Down
2 changes: 1 addition & 1 deletion packages/angular-material/test/common/text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export const textInputEventTest =
() => {
let fixture: ComponentFixture<any>;
let textNativeElement: any;
let component: C;
let component: C & { onChange(evt: string): void };

baseSetup(testConfig);

Expand Down

0 comments on commit 0f15451

Please sign in to comment.