Skip to content

Commit 33d5651

Browse files
authored
Update es-ulist-test.js
1 parent f16c93a commit 33d5651

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/components/es-ulist-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ module('Integration | Component | es ulist', function(hooks){
5858
});
5959
module('Unordered List', function () {
6060

61-
test('the id value of the list title matches the value in the aria-describedby property on the list element', async function(assert){
61+
test('the id value of the list title matches the value in the aria-labelledby property on the list element', async function(assert){
6262
assert.expect(2);
6363

6464
await render(hbs`{{es-ulist elementId='mylist' isUnorderedList=true}}`);
6565

66-
assert.dom('.es-ulist ul').hasAttribute('aria-describedby', 'list-mylist');
66+
assert.dom('.es-ulist ul').hasAttribute('aria-labelledby', 'list-mylist');
6767
assert.dom('.list-title').hasAttribute('id', 'list-mylist');
6868

6969
});

0 commit comments

Comments
 (0)