Skip to content

Commit 72de859

Browse files
llkatsFishrock123
authored andcommitted
test: use common.skip for tap skip output
These were missed from 52bae22 PR-URL: #8841 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
1 parent 4fa0fc5 commit 72de859

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/parallel/test-fs-readfile-pipe-large.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var path = require('path');
66
// simulate `cat readfile.js | node readfile.js`
77

88
if (common.isWindows || common.isAix) {
9-
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
9+
common.skip(`No /dev/stdin on ${process.platform}.`);
1010
return;
1111
}
1212

test/parallel/test-fs-readfile-pipe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var assert = require('assert');
55
// simulate `cat readfile.js | node readfile.js`
66

77
if (common.isWindows || common.isAix) {
8-
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
8+
common.skip(`No /dev/stdin on ${process.platform}.`);
99
return;
1010
}
1111

test/parallel/test-fs-readfilesync-pipe-large.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var path = require('path');
66
// simulate `cat readfile.js | node readfile.js`
77

88
if (common.isWindows || common.isAix) {
9-
console.log(`1..0 # Skipped: No /dev/stdin on ${process.platform}.`);
9+
common.skip(`No /dev/stdin on ${process.platform}.`);
1010
return;
1111
}
1212

0 commit comments

Comments
 (0)