aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-write.js
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2016-05-02 10:27:12 -0700
committerJames M Snell <jasnell@gmail.com>2016-05-17 11:05:18 -0700
commitdcccbfdc799d174901c29d82874457367231fec5 (patch)
treebb1a45d053b169af0b1662000d57e034e4422996 /test/parallel/test-fs-write.js
parentf856234ffaa10441545c3b6ce420b247a17c06cf (diff)
downloadandroid-node-v8-dcccbfdc799d174901c29d82874457367231fec5.tar.gz
android-node-v8-dcccbfdc799d174901c29d82874457367231fec5.tar.bz2
android-node-v8-dcccbfdc799d174901c29d82874457367231fec5.zip
src: refactor require('constants')
The require('constants') module is currently undocumented and mashes together unrelated constants. This refactors the require('constants') in favor of distinct os.constants, fs.constants, and crypto.constants that are specific to the modules for which they are relevant. The next step is to document those within the specific modules. PR-URL: https://github.com/nodejs/node/pull/6534 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Robert Lindstaedt <robert.lindstaedt@gmail.com>
Diffstat (limited to 'test/parallel/test-fs-write.js')
-rw-r--r--test/parallel/test-fs-write.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/parallel/test-fs-write.js b/test/parallel/test-fs-write.js
index 5ddd83e026..9cdabe40d3 100644
--- a/test/parallel/test-fs-write.js
+++ b/test/parallel/test-fs-write.js
@@ -7,7 +7,7 @@ var fs = require('fs');
var fn = path.join(common.tmpDir, 'write.txt');
var fn2 = path.join(common.tmpDir, 'write2.txt');
var expected = 'ümlaut.';
-var constants = require('constants');
+var constants = fs.constants;
var found, found2;
common.refreshTmpDir();
@@ -55,4 +55,3 @@ process.on('exit', function() {
assert.equal(expected, found);
assert.equal(expected, found2);
});
-