fix typos in tests

This commit is contained in:
Rob Zolkos
2013-10-18 12:48:37 +11:00
parent 2510ab53e7
commit 62ce19cbbd
2 changed files with 5 additions and 5 deletions

View File

@@ -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',
@@ -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();
@@ -55,4 +55,4 @@ describe('<Unit Test>', function() {
done();
});
});
});
});

View File

@@ -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();
@@ -44,4 +44,4 @@ describe('<Unit Test>', function() {
done();
});
});
});
});