Navigation Menu

Skip to content

Commit

Permalink
Fix expected command message
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Aug 6, 2012
1 parent 28432ed commit b663e72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cs-commands.test.js
Expand Up @@ -131,7 +131,7 @@ suite('cs-delete-domain', function() {
assert.deepEqual({ code: result.code,
message: result.output.stdout },
{ code: 1,
message: 'You must specify an existing domain name\n' });
message: 'You must specify an existing domain name.\n' });
done();
})
.error(function(e) {
Expand All @@ -148,7 +148,7 @@ suite('cs-delete-domain', function() {
assert.deepEqual({ code: result.code,
message: result.output.stdout },
{ code: 1,
message: 'You must specify the domain name\n' });
message: 'You must specify the domain name.\n' });
done();
})
.error(function(e) {
Expand Down

0 comments on commit b663e72

Please sign in to comment.