aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-mkdir-rmdir.js
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2018-02-09 16:31:26 +0100
committerRuben Bridgewater <ruben@bridgewater.de>2018-02-26 23:18:21 +0000
commitc3eb3efa315382d1073d6a126f4d888cf3e121ec (patch)
treed70cac1a8d1d984153fbfc5860132e42720e540d /test/parallel/test-fs-mkdir-rmdir.js
parente9f2cecf1a14285574f9b6104dd690ef92495d74 (diff)
downloadandroid-node-v8-c3eb3efa315382d1073d6a126f4d888cf3e121ec.tar.gz
android-node-v8-c3eb3efa315382d1073d6a126f4d888cf3e121ec.tar.bz2
android-node-v8-c3eb3efa315382d1073d6a126f4d888cf3e121ec.zip
fs: fix functions executed in wrong context
The callback should run in the global scope and not in the FSReqWrap context. PR-URL: https://github.com/nodejs/node/pull/18668 Refs: https://github.com/nodejs/node/pull/12562 Refs: https://github.com/nodejs/node/pull/12976 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to 'test/parallel/test-fs-mkdir-rmdir.js')
-rw-r--r--test/parallel/test-fs-mkdir-rmdir.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/parallel/test-fs-mkdir-rmdir.js b/test/parallel/test-fs-mkdir-rmdir.js
index 865a5dba95..6427dbd340 100644
--- a/test/parallel/test-fs-mkdir-rmdir.js
+++ b/test/parallel/test-fs-mkdir-rmdir.js
@@ -29,6 +29,7 @@ fs.mkdir(d, 0o666, common.mustCall(function(err) {
assert.ifError(err);
fs.mkdir(d, 0o666, common.mustCall(function(err) {
+ assert.strictEqual(this, undefined);
assert.ok(err, 'got no error');
assert.ok(/^EEXIST/.test(err.message), 'got no EEXIST message');
assert.strictEqual(err.code, 'EEXIST', 'got no EEXIST code');