chore: eslint prefer-template

This commit is contained in:
Peter Jaszkowiak
2021-02-03 23:59:08 -07:00
committed by Julian Lam
parent 4ee0f1459d
commit 707b55b6a5
357 changed files with 2425 additions and 2427 deletions

View File

@@ -692,7 +692,7 @@ describe('Groups', function () {
assert.ifError(err);
User.getUserData(uid, function (err, data) {
assert.ifError(err);
assert.equal(data.groupTitle, '["' + groupName + '"]');
assert.equal(data.groupTitle, `["${groupName}"]`);
assert.deepEqual(data.groupTitleArray, [groupName]);
done();
});