mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-05 19:51:08 +01:00
fix typos in tests
This commit is contained in:
@@ -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();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -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();
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user