lint: Fix comma spacing in node tests.

I apparently failed to check the tests codebase before merging the
last linter commit.  Oops.
This commit is contained in:
Tim Abbott
2018-12-07 13:14:28 -08:00
parent 838dd6d273
commit b2939cdf19
11 changed files with 34 additions and 34 deletions

View File

@@ -419,11 +419,11 @@ run_test('alert_word_settings_item', () => {
var li = $(html).find("li.alert-word-item:first");
var value = li.find('.value');
var button = li.find('button');
assert.equal(li.attr('data-word'),'lunch');
assert.equal(li.attr('data-word'), 'lunch');
assert.equal(value.length, 1);
assert.equal(value.text(), 'lunch');
assert.equal(button.attr('title'), 'translated: Delete alert word');
assert.equal(button.attr('data-word'),'lunch');
assert.equal(button.attr('data-word'), 'lunch');
var title = $(html).find('.new-alert-word-section-title');
var textbox = $(html).find('#create_alert_word_name');