Skip to content

Commit 291668e

Browse files
committed
tests: search-input: prefer angle bracket syntax
Let's prefer angle bracket syntax to curly syntax when invoking the SearchInput component in our integration tests.
1 parent f9f1e37 commit 291668e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/components/search-input-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ module('Integration | Component | search input', function (hooks) {
155155
];
156156
});
157157

158-
await render(hbs`{{search-input}}`);
158+
await render(hbs`<SearchInput/>`);
159159

160160
await fillIn('#search-input', 'model');
161161

@@ -171,7 +171,7 @@ module('Integration | Component | search input', function (hooks) {
171171
return [];
172172
});
173173

174-
await render(hbs`{{search-input}}`);
174+
await render(hbs`<SearchInput/>`);
175175

176176
await fillIn('#search-input', 'model');
177177

0 commit comments

Comments
 (0)