From 667582744e3c16d010436c808a0811bf636547fb Mon Sep 17 00:00:00 2001 From: barisusakli Date: Thu, 9 Feb 2017 13:22:03 +0300 Subject: [PATCH] fix eslint --- test/topics.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/topics.js b/test/topics.js index 24b4c973de..01af1f5f2e 100644 --- a/test/topics.js +++ b/test/topics.js @@ -1236,17 +1236,17 @@ describe('Topic\'s', function () { assert.equal(err.message, '[[error:invalid-data]]'); done(); }); - }) + }); it('should error with invalid type', function (done) { socketTopics.changeWatching({uid: followerUid}, {tid: tid, type: 'derp'}, function (err) { assert.equal(err.message, '[[error:invalid-command]]'); done(); }); - }) + }); it('should follow topic', function (done) { - topics.toggleFollow(tid, followerUid, function(err, isFollowing) { + topics.toggleFollow(tid, followerUid, function (err, isFollowing) { assert.ifError(err); assert(isFollowing); topics.isFollowing([tid], followerUid, function (err, isFollowing) {