Skip to content

Commit

Permalink
test: add callback to fs.close() in test-fs-chmod
Browse files Browse the repository at this point in the history
To avoid '[DEP0013] DeprecationWarning:
Calling an asynchronous function without callback is deprecated.'

PR-URL: #12795
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
vsemozhetbyt committed May 4, 2017
1 parent f971916 commit 712596f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-fs-chmod.js
Expand Up @@ -114,7 +114,7 @@ fs.open(file2, 'a', common.mustCall((err, fd) => {
assert.strictEqual(mode_sync, fs.fstatSync(fd).mode & 0o777); assert.strictEqual(mode_sync, fs.fstatSync(fd).mode & 0o777);
} }


fs.close(fd); fs.close(fd, assert.ifError);
})); }));
})); }));


Expand Down

0 comments on commit 712596f

Please sign in to comment.