summaryrefslogtreecommitdiff
path: root/test/simple/test-fs-exists.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-fs-exists.js')
-rw-r--r--test/simple/test-fs-exists.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/simple/test-fs-exists.js b/test/simple/test-fs-exists.js
index cf785ccdb1..bdc81473c6 100644
--- a/test/simple/test-fs-exists.js
+++ b/test/simple/test-fs-exists.js
@@ -29,14 +29,14 @@ fs.exists(f, function(y) {
exists = y;
});
-fs.exists(f + '-NO', function (y) {
+fs.exists(f + '-NO', function(y) {
doesNotExist = y;
});
assert(fs.existsSync(f));
assert(!fs.existsSync(f + '-NO'));
-process.on('exit', function () {
+process.on('exit', function() {
assert.strictEqual(exists, true);
assert.strictEqual(doesNotExist, false);
});