Skip to content

Commit 3aaf899

Browse files
committed
build: fix CI issues (#25429)
1 parent 69b2904 commit 3aaf899

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/material/chips/chip-list.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ describe('MatChipList', () => {
753753
tick();
754754
falsyFixture.detectChanges();
755755

756-
const chipListElement = falsyFixture.debugElement.query(By.directive(MatLegacyChipList))!;
756+
const chipListElement = falsyFixture.debugElement.query(By.directive(MatChipList))!;
757757
const currentChips = chipListElement.componentInstance.chips;
758758
const currentNativeChips = falsyFixture.debugElement
759759
.queryAll(By.css('mat-chip'))
@@ -1917,6 +1917,6 @@ class FalsyBasicChipList {
19171917
tabIndexOverride: number;
19181918
selectable: boolean = false;
19191919

1920-
@ViewChild(MatLegacyChipList) chipList: MatLegacyChipList;
1921-
@ViewChildren(MatLegacyChip) chips: QueryList<MatLegacyChip>;
1920+
@ViewChild(MatChipList) chipList: MatChipList;
1921+
@ViewChildren(MatChip) chips: QueryList<MatChip>;
19221922
}

0 commit comments

Comments
 (0)