From 4121fc8fb5a60f04cea98c15463f2c008a49e943 Mon Sep 17 00:00:00 2001 From: Mark Stosberg Date: Mon, 4 Nov 2013 14:11:37 -0500 Subject: [PATCH] Fix typos in tests: s/witout/without/gc --- test/article/model.js | 2 +- test/user/model.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/article/model.js b/test/article/model.js index 844f917d7a..9d1fd034c2 100644 --- a/test/article/model.js +++ b/test/article/model.js @@ -41,7 +41,7 @@ describe('', function() { }); }); - it('should be able to show an error when try to save witout title', function(done) { + it('should be able to show an error when try to save without title', function(done) { article.title = ''; return article.save(function(err) { diff --git a/test/user/model.js b/test/user/model.js index eb8a2e5480..0ec6820a1f 100644 --- a/test/user/model.js +++ b/test/user/model.js @@ -49,7 +49,7 @@ describe('', function() { }); }); - it('should be able to show an error when try to save witout name', function(done) { + it('should be able to show an error when try to save without name', function(done) { user.name = ''; return user.save(function(err) { should.exist(err);