summaryrefslogtreecommitdiff
path: root/test/pseudo-tty/no_interleaved_stdio.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/pseudo-tty/no_interleaved_stdio.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/pseudo-tty/no_interleaved_stdio.js')
-rw-r--r--test/pseudo-tty/no_interleaved_stdio.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pseudo-tty/no_interleaved_stdio.js b/test/pseudo-tty/no_interleaved_stdio.js
index 3f1e7b5fb1..81ba49b9ae 100644
--- a/test/pseudo-tty/no_interleaved_stdio.js
+++ b/test/pseudo-tty/no_interleaved_stdio.js
@@ -18,4 +18,4 @@ const err = '__This is some stderr__';
setTimeout(function() {
process.stdout.write(out);
process.stderr.write(err);
-}, common.isAix ? 200 : 0);
+}, common.isAIX ? 200 : 0);