Skip to content

Commit

Permalink
Build: Add space to not-owned notices (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikkemperman authored and phated committed Jul 23, 2016
1 parent 4b1b39a commit b4b1049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/not-owned.js
Expand Up @@ -32,7 +32,7 @@ describe('.dest() on not owned files', function() {
it('does not error if mtime is different', function(done) {
if (dirStats.uid !== 0 || fileStats.uid !== 0) {
console.log('Test files not owned by root.');
console.log('Please chown ' + notOwnedBase + ' and' + notOwnedPath + ' and try again.');
console.log('Please chown ' + notOwnedBase + ' and ' + notOwnedPath + ' and try again.');
this.skip();
return;
}
Expand Down Expand Up @@ -64,7 +64,7 @@ describe('.dest() on not owned files', function() {
it('does not error if mode is different', function(done) {
if (dirStats.uid !== 0 || fileStats.uid !== 0) {
console.log('Test files not owned by root.');
console.log('Please chown ' + notOwnedBase + ' and' + notOwnedPath + ' and try again.');
console.log('Please chown ' + notOwnedBase + ' and ' + notOwnedPath + ' and try again.');
this.skip();
return;
}
Expand Down

0 comments on commit b4b1049

Please sign in to comment.