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 +});