Skip to content

Commit 7700eff

Browse files
authored
docs: fix MatSelect example (#19614)
1 parent 0ccc0e5 commit 7700eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/using-component-harnesses.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ describe('issue-report-selector', () => {
217217

218218
it('should switch to bug report template', async () => {
219219
expect(fixture.debugElement.query('bug-report-form')).toBeNull();
220-
const select = await loader.getHarness(MatSelect);
220+
const select = await loader.getHarness(MatSelectHarness);
221221
await select.open();
222222
const bugOption = await select.getOption({text: 'Bug'});
223223
await bugOption.click();

0 commit comments

Comments
 (0)