Skip to content

Commit c654267

Browse files
committed
chore: lint issues in tests
1 parent 387c77f commit c654267

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/components/x-textarea-test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module('Integration | Component | x-textarea', function(hooks) {
1212

1313
await render(hbs`{{x-textarea}}`);
1414

15-
assert.equal(this.element.textContent.trim(), '');
15+
assert.equal(('' + this.element.textContent).trim(), '');
1616

1717
// Template block usage:
1818
await render(hbs`
@@ -21,6 +21,6 @@ module('Integration | Component | x-textarea', function(hooks) {
2121
{{/x-textarea}}
2222
`);
2323

24-
assert.equal(this.element.textContent.trim(), 'template block text');
24+
assert.equal(('' + this.element.textContent).trim(), 'template block text');
2525
});
2626
});

0 commit comments

Comments
 (0)