summaryrefslogtreecommitdiff
path: root/test/simple/test-child-process-exec-cwd.js
diff options
context:
space:
mode:
authorColton Baker <github@netrefuge.net>2011-10-04 18:08:18 -0400
committerRyan Dahl <ry@tinyclouds.org>2011-10-05 18:51:06 -0700
commit87286cc7371886d9856edf424785aaa890ba05a9 (patch)
tree0a3e93be28b8ebb62d9b774919d29b2c1600fa46 /test/simple/test-child-process-exec-cwd.js
parent627f379f2273341426ab3d5cb7eb4d5c148d500a (diff)
downloadnode-new-87286cc7371886d9856edf424785aaa890ba05a9.tar.gz
Fixed a lot of jslint errors.
Fixes #1831
Diffstat (limited to 'test/simple/test-child-process-exec-cwd.js')
-rw-r--r--test/simple/test-child-process-exec-cwd.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-child-process-exec-cwd.js b/test/simple/test-child-process-exec-cwd.js
index 5e82ff5dd7..2751b90781 100644
--- a/test/simple/test-child-process-exec-cwd.js
+++ b/test/simple/test-child-process-exec-cwd.js
@@ -29,10 +29,10 @@ var error_count = 0;
var pwdcommand, dir;
if (process.platform == 'win32') {
- pwdcommand = 'echo %cd%';
+ pwdcommand = 'echo %cd%';
dir = 'c:\\windows';
} else {
- pwdcommand = 'pwd';
+ pwdcommand = 'pwd';
dir = '/dev';
}