Skip to content

Commit ae24d4c

Browse files
NullVoxPopuliclaude
andcommitted
Fix missing closing quote in HBS test for template-no-redundant-role
The test string '<nav class="navigation" role="navigation></nav>' was missing the closing double-quote after "navigation", causing the role value to not be properly parsed in the test. Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
1 parent e8c212d commit ae24d4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/lib/rules/template-no-redundant-role.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ hbsRuleTester.run('template-no-redundant-role', rule, {
142142
'<ul role="list"></ul>',
143143
'<input role="combobox">',
144144
'<footer role={{this.bar}}></footer>',
145-
'<nav class="navigation" role="navigation></nav>',
145+
'<nav class="navigation" role="navigation"></nav>',
146146
'<button role="link"></button>',
147147
'<input type="checkbox" value="yes" checked />',
148148
'<input type="range" />',

0 commit comments

Comments
 (0)