diff --git a/test/parallel/test-cluster-basic.js b/test/parallel/test-cluster-basic.js index 814afdee5efebb..fb72e7b4067a16 100644 --- a/test/parallel/test-cluster-basic.js +++ b/test/parallel/test-cluster-basic.js @@ -5,7 +5,7 @@ const assert = require('assert'); const cluster = require('cluster'); assert.strictEqual('NODE_UNIQUE_ID' in process.env, false, - `NODE_UNIQUE_ID (${process.env.NODE_UNIQUE_ID})` + + `NODE_UNIQUE_ID (${process.env.NODE_UNIQUE_ID}) ` + 'should be removed on startup'); function forEach(obj, fn) { diff --git a/test/parallel/test-promises-unhandled-rejections.js b/test/parallel/test-promises-unhandled-rejections.js index 03e7f00c1e837b..934073aecccdda 100644 --- a/test/parallel/test-promises-unhandled-rejections.js +++ b/test/parallel/test-promises-unhandled-rejections.js @@ -182,7 +182,7 @@ asyncTest('When re-throwing new errors in a promise catch, only the' + }); }); -asyncTest('Test params of unhandledRejection for a synchronously-rejected' + +asyncTest('Test params of unhandledRejection for a synchronously-rejected ' + 'promise', function(done) { const e = new Error(); onUnhandledSucceed(done, function(reason, promise) { @@ -294,7 +294,7 @@ asyncTest('While inside setImmediate, catching a rejected promise derived ' + }); // State adapation tests -asyncTest('catching a promise which is asynchronously rejected (via' + +asyncTest('catching a promise which is asynchronously rejected (via ' + 'resolution to an asynchronously-rejected promise) prevents' + ' unhandledRejection', function(done) { const e = new Error(); @@ -381,7 +381,7 @@ asyncTest( ); // Combinations with Promise.all -asyncTest('Catching the Promise.all() of a collection that includes a' + +asyncTest('Catching the Promise.all() of a collection that includes a ' + 'rejected promise prevents unhandledRejection', function(done) { const e = new Error(); onUnhandledFail(done); @@ -666,7 +666,7 @@ asyncTest('nextTick is immediately scheduled when called inside an event' + }); asyncTest('Throwing an error inside a rejectionHandled handler goes to' + - ' unhandledException, and does not cause .catch() to throw an' + + ' unhandledException, and does not cause .catch() to throw an ' + 'exception', function(done) { clean(); const e = new Error();