aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-shared-handle-bind-privileged-port.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-cluster-shared-handle-bind-privileged-port.js')
-rw-r--r--test/parallel/test-cluster-shared-handle-bind-privileged-port.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-cluster-shared-handle-bind-privileged-port.js b/test/parallel/test-cluster-shared-handle-bind-privileged-port.js
index a02a2ef5b6..90bab2febe 100644
--- a/test/parallel/test-cluster-shared-handle-bind-privileged-port.js
+++ b/test/parallel/test-cluster-shared-handle-bind-privileged-port.js
@@ -5,12 +5,12 @@ var cluster = require('cluster');
var net = require('net');
if (common.isWindows) {
- console.log('1..0 # Skipped: not reliable on Windows');
+ common.skip('not reliable on Windows');
return;
}
if (process.getuid() === 0) {
- console.log('1..0 # Skipped: as this test should not be run as `root`');
+ common.skip('as this test should not be run as `root`');
return;
}