summaryrefslogtreecommitdiff
path: root/test/simple/test-fs-open.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/simple/test-fs-open.js')
-rw-r--r--test/simple/test-fs-open.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/simple/test-fs-open.js b/test/simple/test-fs-open.js
index 922c0335bb..ed87efa070 100644
--- a/test/simple/test-fs-open.js
+++ b/test/simple/test-fs-open.js
@@ -26,7 +26,8 @@ var fs = require('fs');
var caughtException = false;
try {
- // should throw ENOENT, not EBADF - see https://github.com/joyent/node/pull/1228
+ // 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) {