aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-exists.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-fs-exists.js')
-rw-r--r--test/parallel/test-fs-exists.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-fs-exists.js b/test/parallel/test-fs-exists.js
index 5f9e9f50bf..14e1446f5a 100644
--- a/test/parallel/test-fs-exists.js
+++ b/test/parallel/test-fs-exists.js
@@ -2,7 +2,7 @@
const common = require('../common');
const assert = require('assert');
const fs = require('fs');
-var f = __filename;
+const f = __filename;
fs.exists(f, common.mustCall(function(y) {
assert.strictEqual(y, true);