summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-watch-encoding.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-watch-encoding.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-watch-encoding.js')
-rw-r--r--test/parallel/test-fs-watch-encoding.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-fs-watch-encoding.js b/test/parallel/test-fs-watch-encoding.js
index b9488f7a7f..18b6f2ecf6 100644
--- a/test/parallel/test-fs-watch-encoding.js
+++ b/test/parallel/test-fs-watch-encoding.js
@@ -16,7 +16,7 @@ const common = require('../common');
// The testcase makes use of folder watching, and causes
// hang. This behavior is documented. Skip this for AIX.
-if (common.isAix)
+if (common.isAIX)
common.skip('folder watch capability is limited in AIX.');
const fs = require('fs');