From 1956214a2986efe242e8a291edfdd36284bc5959 Mon Sep 17 00:00:00 2001 From: Erik Kemperman Date: Sat, 23 Jul 2016 22:34:04 +0200 Subject: [PATCH] Build: Add space to not-owned notices (#196) --- test/not-owned.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/not-owned.js b/test/not-owned.js index 8efb3fb8..290a3dab 100644 --- a/test/not-owned.js +++ b/test/not-owned.js @@ -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; } @@ -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; }