Fix eslint nits.

This commit is contained in:
Claas Augner 2016-12-29 10:05:07 +01:00
parent 43c1dd82f6
commit 37386faff2
No known key found for this signature in database
GPG Key ID: 63E8BCF5EB1A35AE
1 changed files with 2 additions and 2 deletions

View File

@ -760,7 +760,7 @@ componentTest('emoji', {
}
});
testCase("replace-text event", function(assert, textarea) {
testCase("replace-text event", function(assert) {
this.set('value', "red green blue");
@ -831,7 +831,7 @@ testCase("replace-text event", function(assert, textarea) {
function getSelection(textarea) {
const start = textarea.selectionStart;
const end = textarea.selectionEnd
const end = textarea.selectionEnd;
return [start, end - start];
}