Skip to content

Commit

Permalink
build: fix CI issues (#25429)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba committed Aug 10, 2022
1 parent 69b2904 commit 3aaf899
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/material/chips/chip-list.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@ describe('MatChipList', () => {
tick();
falsyFixture.detectChanges();

const chipListElement = falsyFixture.debugElement.query(By.directive(MatLegacyChipList))!;
const chipListElement = falsyFixture.debugElement.query(By.directive(MatChipList))!;
const currentChips = chipListElement.componentInstance.chips;
const currentNativeChips = falsyFixture.debugElement
.queryAll(By.css('mat-chip'))
Expand Down Expand Up @@ -1917,6 +1917,6 @@ class FalsyBasicChipList {
tabIndexOverride: number;
selectable: boolean = false;

@ViewChild(MatLegacyChipList) chipList: MatLegacyChipList;
@ViewChildren(MatLegacyChip) chips: QueryList<MatLegacyChip>;
@ViewChild(MatChipList) chipList: MatChipList;
@ViewChildren(MatChip) chips: QueryList<MatChip>;
}

0 comments on commit 3aaf899

Please sign in to comment.