summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-open.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-fs-open.js')
-rw-r--r--test/parallel/test-fs-open.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-fs-open.js b/test/parallel/test-fs-open.js
index 7881248252..9a1ae623fe 100644
--- a/test/parallel/test-fs-open.js
+++ b/test/parallel/test-fs-open.js
@@ -27,7 +27,7 @@ const fs = require('fs');
let caughtException = false;
try {
- // should throw ENOENT, not EBADF
+ // Should throw ENOENT, not EBADF
// see https://github.com/joyent/node/pull/1228
fs.openSync('/path/to/file/that/does/not/exist', 'r');
} catch (e) {