Skip to content

Commit 5c4bd3e

Browse files
committed
chore: remove 'upstream' references from test comments
1 parent 11afc7a commit 5c4bd3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/lib/rules/template-no-attrs-in-components.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ruleTester.run('template-no-attrs-in-components', rule, {
1818
code: '<template>{{this.value}}</template>',
1919
},
2020
// `this.attrs.*` is not a real Ember API, but it is NOT what this rule
21-
// targets — upstream only flags bare `attrs.*`. So outside of a component
21+
// targets — only bare `attrs.*` is flagged. So outside of a component
2222
// template, `this.attrs.*` should not be flagged.
2323
{
2424
filename: 'app/templates/application.hbs',
@@ -38,7 +38,7 @@ ruleTester.run('template-no-attrs-in-components', rule, {
3838
filename: 'app/templates/components/foo.hbs',
3939
code: '<template>{{this.value}}</template>',
4040
},
41-
// Upstream does NOT flag `this.attrs.*`; only bare `attrs.*`.
41+
// This rule does NOT flag `this.attrs.*`; only bare `attrs.*`.
4242
{
4343
filename: 'app/templates/components/foo.hbs',
4444
code: '<template>{{this.attrs.foo}}</template>',

0 commit comments

Comments
 (0)