Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Fix typos in tests: s/witout/without/gc
Browse files Browse the repository at this point in the history
  • Loading branch information
markstos committed Nov 4, 2013
1 parent 9af341b commit 4121fc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/article/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('<Unit Test>', 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) {
Expand Down
2 changes: 1 addition & 1 deletion test/user/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('<Unit Test>', 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);
Expand Down

0 comments on commit 4121fc8

Please sign in to comment.