summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-open-flags.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-01-01 17:37:10 -0800
committerRich Trott <rtrott@gmail.com>2016-01-04 14:20:03 -0800
commitc14726cefc9cb5bcb874900083ea7d022cee92fe (patch)
tree2b71a3dde822cbec8894f0a523ef99ae058e38ef /test/parallel/test-fs-open-flags.js
parent063c9f68865e1c5049fd4f29a547cad1b6fa7642 (diff)
downloadandroid-node-v8-c14726cefc9cb5bcb874900083ea7d022cee92fe.tar.gz
android-node-v8-c14726cefc9cb5bcb874900083ea7d022cee92fe.tar.bz2
android-node-v8-c14726cefc9cb5bcb874900083ea7d022cee92fe.zip
test: remove unused vars from parallel tests
Remove all remaining unused variables from tests in test/parallel. PR-URL: https://github.com/nodejs/node/pull/4511 Reviewed-By: James M Snell<jasnell@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'test/parallel/test-fs-open-flags.js')
-rw-r--r--test/parallel/test-fs-open-flags.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/parallel/test-fs-open-flags.js b/test/parallel/test-fs-open-flags.js
index b53a823603..667abb8176 100644
--- a/test/parallel/test-fs-open-flags.js
+++ b/test/parallel/test-fs-open-flags.js
@@ -7,14 +7,9 @@ var fs = require('fs');
var O_APPEND = constants.O_APPEND || 0;
var O_CREAT = constants.O_CREAT || 0;
-var O_DIRECTORY = constants.O_DIRECTORY || 0;
var O_EXCL = constants.O_EXCL || 0;
-var O_NOCTTY = constants.O_NOCTTY || 0;
-var O_NOFOLLOW = constants.O_NOFOLLOW || 0;
var O_RDONLY = constants.O_RDONLY || 0;
var O_RDWR = constants.O_RDWR || 0;
-var O_SYMLINK = constants.O_SYMLINK || 0;
-var O_SYNC = constants.O_SYNC || 0;
var O_TRUNC = constants.O_TRUNC || 0;
var O_WRONLY = constants.O_WRONLY || 0;