From 505e511e4dd956345a195cee5d27fb8fe53ceda3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Wed, 25 Apr 2018 13:21:39 -0400 Subject: [PATCH] fix tests --- test/topics.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/topics.js b/test/topics.js index 559eaab973..e98a03a270 100644 --- a/test/topics.js +++ b/test/topics.js @@ -1080,14 +1080,12 @@ describe('Topic\'s', function () { }); it('should mark topic notifications read', function (done) { - var socketPosts = require('../src/socket.io/posts'); - async.waterfall([ function (next) { socketTopics.follow({ uid: adminUid }, tid, next); }, function (next) { - socketPosts.reply({ uid: uid }, { content: 'some content', tid: tid }, next); + topics.reply({ uid: uid, timestamp: Date.now(), content: 'some content', tid: tid }, next); }, function (data, next) { setTimeout(next, 2500);