summaryrefslogtreecommitdiff
path: root/test/pseudo-tty/test-stderr-stdout-handle-sigwinch.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/test-stderr-stdout-handle-sigwinch.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/test-stderr-stdout-handle-sigwinch.js')
-rw-r--r--test/pseudo-tty/test-stderr-stdout-handle-sigwinch.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pseudo-tty/test-stderr-stdout-handle-sigwinch.js b/test/pseudo-tty/test-stderr-stdout-handle-sigwinch.js
index 4d87e15d34..d5f187d1c3 100644
--- a/test/pseudo-tty/test-stderr-stdout-handle-sigwinch.js
+++ b/test/pseudo-tty/test-stderr-stdout-handle-sigwinch.js
@@ -31,4 +31,4 @@ process.stdout._refreshSize = wrap(originalRefreshSizeStdout,
// can setup the readloop. Provide a reasonable delay.
setTimeout(function() {
process.emit('SIGWINCH');
-}, common.isAix ? 200 : 0);
+}, common.isAIX ? 200 : 0);