Skip to content

Commit 67e253c

Browse files
committed
style(material/multiple): fix ci build fail issues
1 parent 9dfa6dd commit 67e253c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

src/material/input/input.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,8 @@ describe('MatInput without forms', () => {
423423
const fixture = createComponent(MatInputPlaceholderRequiredTestComponent);
424424
fixture.detectChanges();
425425

426-
const matFormFieldElement = fixture.debugElement.query(By.css('.mat-form-field-required-marker'))!.nativeElement;
426+
const matFormFieldElement =
427+
fixture.debugElement.query(By.css('.mat-form-field-required-marker'))!.nativeElement;
427428

428429
expect(matFormFieldElement.getAttribute('aria-hidden')).toBe('true');
429430
}));

src/material/select/select.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1741,7 +1741,8 @@ describe('MatSelect', () => {
17411741
it('should emit to `optionSelectionChanges` after the list of options has changed',
17421742
fakeAsync(() => {
17431743
const spy = jasmine.createSpy('option selection spy');
1744-
const subscription = fixture.componentInstance.select.optionSelectionChanges.subscribe(spy);
1744+
const subscription =
1745+
fixture.componentInstance.select.optionSelectionChanges.subscribe(spy);
17451746
const selectFirstOption = () => {
17461747
trigger.click();
17471748
fixture.detectChanges();

src/material/sidenav/drawer.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ describe('MatDrawerContainer', () => {
886886
tick();
887887
fixture.detectChanges();
888888

889-
const backdrop = root.querySelector('.mat-drawer-backdrop.mat-drawer-shown');
889+
let backdrop = root.querySelector('.mat-drawer-backdrop.mat-drawer-shown');
890890

891891
expect(backdrop).toBeFalsy();
892892

0 commit comments

Comments
 (0)