From 62ce19cbbdbec522eab2bc8de520cb0d6e9b779c Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Fri, 18 Oct 2013 12:48:37 +1100 Subject: [PATCH] fix typos in tests --- test/article/model.js | 6 +++--- test/user/model.js | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/test/article/model.js b/test/article/model.js index e31351ab..f8b8a4e2 100644 --- a/test/article/model.js +++ b/test/article/model.js @@ -22,7 +22,7 @@ describe('', function() { password: 'password' }); - user.save(function(err) { + user.save(function(err) { article = new Article({ title: 'Article Title', content: 'Article Content', @@ -34,7 +34,7 @@ describe('', function() { }); describe('Method Save', function() { - it('should be able to save whithout problems', function(done) { + it('should be able to save without problems', function(done) { return article.save(function(err) { should.not.exist(err); done(); @@ -55,4 +55,4 @@ describe('', function() { done(); }); }); -}); \ No newline at end of file +}); diff --git a/test/user/model.js b/test/user/model.js index 4919b7b5..360671bf 100644 --- a/test/user/model.js +++ b/test/user/model.js @@ -24,7 +24,7 @@ describe('', function() { }); describe('Method Save', function() { - it('should be able to save whithout problems', function(done) { + it('should be able to save without problems', function(done) { return user.save(function(err) { should.not.exist(err); done(); @@ -44,4 +44,4 @@ describe('', function() { done(); }); }); -}); \ No newline at end of file +});