Skip to content

Commit 05ae98f

Browse files
committed
Change quotes to pass lint
1 parent caf46da commit 05ae98f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/lib/rules/template-no-unused-block-params.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,12 @@ const invalidHbs = [
114114
errors: [{ messageId: 'unusedBlockParam', data: { param: 'life' } }],
115115
},
116116
{
117-
code: `{{#each cats as |cat|}}plain cat text{{/each}}`,
117+
code: '{{#each cats as |cat|}}plain cat text{{/each}}',
118118
output: null,
119119
errors: [{ messageId: 'unusedBlockParam', data: { param: 'cat' } }],
120120
},
121121
{
122-
code: `{{#each cats as |cat|}}{{a.different.cat}}{{/each}}`,
122+
code: '{{#each cats as |cat|}}{{a.different.cat}}{{/each}}',
123123
output: null,
124124
errors: [{ messageId: 'unusedBlockParam', data: { param: 'cat' } }],
125125
},

0 commit comments

Comments
 (0)