summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-readfilesync-pipe-large.js
diff options
context:
space:
mode:
author章礼平 <LipperZack@gmail.com>2017-07-16 15:07:33 +0800
committerRich Trott <rtrott@gmail.com>2017-07-16 02:24:47 -0700
commitfb37922cf350f56a3da6e4b083951241750d380f (patch)
treeaf3de2345c7a6c60e0361c0dd53e9f57dd07c851 /test/parallel/test-fs-readfilesync-pipe-large.js
parent5d3609dbdd98b3ea3c53a3020305b7567979c888 (diff)
downloadandroid-node-v8-fb37922cf350f56a3da6e4b083951241750d380f.tar.gz
android-node-v8-fb37922cf350f56a3da6e4b083951241750d380f.tar.bz2
android-node-v8-fb37922cf350f56a3da6e4b083951241750d380f.zip
test: change isAix to isAIX
This makes the naming more consistent with existing properties like isFreeBSD where the capitalization of the property name is consistent with the conventional styling of the operating system. PR-URL: https://github.com/nodejs/node/pull/14263 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Bryan English <bryan@bryanenglish.com>
Diffstat (limited to 'test/parallel/test-fs-readfilesync-pipe-large.js')
-rw-r--r--test/parallel/test-fs-readfilesync-pipe-large.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-fs-readfilesync-pipe-large.js b/test/parallel/test-fs-readfilesync-pipe-large.js
index daa53bf3de..f9dea90d10 100644
--- a/test/parallel/test-fs-readfilesync-pipe-large.js
+++ b/test/parallel/test-fs-readfilesync-pipe-large.js
@@ -3,7 +3,7 @@ const common = require('../common');
// simulate `cat readfile.js | node readfile.js`
-if (common.isWindows || common.isAix)
+if (common.isWindows || common.isAIX)
common.skip(`No /dev/stdin on ${process.platform}.`);
const assert = require('assert');