From 385e034a23688eca1431692e83676b01d24de64a Mon Sep 17 00:00:00 2001 From: barisusakli Date: Wed, 12 Nov 2014 01:19:40 -0500 Subject: [PATCH] fix tests --- tests/topics.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/topics.js b/tests/topics.js index 3a265af2cd..4197f54b6e 100644 --- a/tests/topics.js +++ b/tests/topics.js @@ -61,21 +61,21 @@ describe('Topic\'s', function() { it('should fail to create new topic with empty title', function(done) { topics.post({uid: topic.userId, title: '', content: topic.content, cid: topic.categoryId}, function(err, result) { - assert.equal(err); + assert.ok(err); done(); }); }); it('should fail to create new topic with empty content', function(done) { topics.post({uid: topic.userId, title: topic.title, content: '', cid: topic.categoryId}, function(err, result) { - assert.equal(err); + assert.ok(err); done(); }); }); it('should fail to create new topic with non-existant category id', function(done) { topics.post({uid: topic.userId, title: topic.title, content: topic.content, cid: 99}, function(err, result) { - assert.equal(err,message, '[[error:no-category]]'); + assert.equal(err, '[[error:no-category]]', 'received no error'); done(); }); });