diff options
author | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2015-07-29 17:18:04 +0530 |
---|---|---|
committer | Sakthipriyan Vairamani <thechargingvolcano@gmail.com> | 2015-07-31 00:29:36 +0530 |
commit | d5ab92bcc1f0ddf7ea87a8322824a688dfd43bf5 (patch) | |
tree | 84fd79f5ed48e08077d0f0b347147be38daf82df /test/parallel/test-child-process-exec-cwd.js | |
parent | fa98b97171d9b8519bdbf5d9f8dbd8639ac3c050 (diff) | |
download | node-new-d5ab92bcc1f0ddf7ea87a8322824a688dfd43bf5.tar.gz |
test: use common.isWindows consistently
In the tests, we use "process.platform === 'win32'" in some places.
This patch replaces them with the "common.isWindows" for consistency.
PR-URL: https://github.com/nodejs/io.js/pull/2269
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Diffstat (limited to 'test/parallel/test-child-process-exec-cwd.js')
-rw-r--r-- | test/parallel/test-child-process-exec-cwd.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-child-process-exec-cwd.js b/test/parallel/test-child-process-exec-cwd.js index 9e7039990e..e253399b96 100644 --- a/test/parallel/test-child-process-exec-cwd.js +++ b/test/parallel/test-child-process-exec-cwd.js @@ -1,5 +1,5 @@ 'use strict'; -require('../common'); +const common = require('../common'); var assert = require('assert'); var exec = require('child_process').exec; @@ -8,7 +8,7 @@ var error_count = 0; var pwdcommand, dir; -if (process.platform == 'win32') { +if (common.isWindows) { pwdcommand = 'echo %cd%'; dir = 'c:\\windows'; } else { |