Skip to content

Commit

Permalink
test(material/select): fix broken test (#29760)
Browse files Browse the repository at this point in the history
After #29645, the assertion for `aria-autocomplete` isn't valid anymore.
  • Loading branch information
crisbeto authored Sep 19, 2024
1 parent c4ca044 commit 886fb6d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/material/select/select.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ describe('MatSelect', () => {

it('should set the role of the select to combobox', () => {
expect(select.getAttribute('role')).toEqual('combobox');
expect(select.getAttribute('aria-autocomplete')).toBe('none');
expect(select.getAttribute('aria-haspopup')).toBe('listbox');
});

Expand Down

0 comments on commit 886fb6d

Please sign in to comment.