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.

(cherry picked from commit 886fb6d)
  • Loading branch information
crisbeto committed Sep 19, 2024
1 parent 724dc2f commit 919f08d
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', fakeAsync(() => {
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 919f08d

Please sign in to comment.