summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-realpath.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-25 23:32:35 -0700
committerRich Trott <rtrott@gmail.com>2016-04-28 14:42:51 -0700
commit8f5695865860ecf06868a89687923e7eb514b442 (patch)
tree17417f2130d412e0dd04fa46733d1ea31079b5e2 /test/parallel/test-fs-realpath.js
parent296bfd239cef866af893303220b0719e0753d3a7 (diff)
downloadandroid-node-v8-8f5695865860ecf06868a89687923e7eb514b442.tar.gz
android-node-v8-8f5695865860ecf06868a89687923e7eb514b442.tar.bz2
android-node-v8-8f5695865860ecf06868a89687923e7eb514b442.zip
test,tools: adjust function argument alignment
In preparation for a lint rule enforcing function argument alignment, adjust function arguments to be aligned. PR-URL: https://github.com/nodejs/node/pull/6390 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Imran Iqbal <imran@imraniqbal.org> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ryan Graham <r.m.graham@gmail.com>
Diffstat (limited to 'test/parallel/test-fs-realpath.js')
-rw-r--r--test/parallel/test-fs-realpath.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-fs-realpath.js b/test/parallel/test-fs-realpath.js
index b7eb514508..db50657377 100644
--- a/test/parallel/test-fs-realpath.js
+++ b/test/parallel/test-fs-realpath.js
@@ -342,14 +342,14 @@ function test_escape_cwd(cb) {
console.log('test_escape_cwd');
asynctest(fs.realpath, ['..'], cb, function(er, uponeActual) {
assertEqualPath(upone, uponeActual,
- 'realpath("..") expected: ' + path.resolve(upone) +
- ' actual:' + uponeActual);
+ 'realpath("..") expected: ' + path.resolve(upone) +
+ ' actual:' + uponeActual);
});
}
var uponeActual = fs.realpathSync('..');
assertEqualPath(upone, uponeActual,
- 'realpathSync("..") expected: ' + path.resolve(upone) +
- ' actual:' + uponeActual);
+ 'realpathSync("..") expected: ' + path.resolve(upone) +
+ ' actual:' + uponeActual);
// going up with .. multiple times