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
Browse files Browse the repository at this point in the history
  • Loading branch information
robzolkos committed Oct 18, 2013
1 parent 2510ab5 commit 62ce19c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions test/article/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('<Unit Test>', function() {
password: 'password'
});

user.save(function(err) {
user.save(function(err) {
article = new Article({
title: 'Article Title',
content: 'Article Content',
Expand All @@ -34,7 +34,7 @@ describe('<Unit Test>', 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();
Expand All @@ -55,4 +55,4 @@ describe('<Unit Test>', function() {
done();
});
});
});
});
4 changes: 2 additions & 2 deletions test/user/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('<Unit Test>', 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();
Expand All @@ -44,4 +44,4 @@ describe('<Unit Test>', function() {
done();
});
});
});
});

0 comments on commit 62ce19c

Please sign in to comment.