summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-fs-rmdir-recursive.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/parallel/test-fs-rmdir-recursive.js b/test/parallel/test-fs-rmdir-recursive.js
index 471eb69cb2..53f863872d 100644
--- a/test/parallel/test-fs-rmdir-recursive.js
+++ b/test/parallel/test-fs-rmdir-recursive.js
@@ -155,12 +155,10 @@ function removeAsync(dir) {
// Test input validation.
{
const defaults = {
- emfileWait: 1000,
maxRetries: 0,
recursive: false
};
const modified = {
- emfileWait: 953,
maxRetries: 5,
recursive: true
};
@@ -171,7 +169,6 @@ function removeAsync(dir) {
assert.deepStrictEqual(validateRmdirOptions({
maxRetries: 99
}), {
- emfileWait: 1000,
maxRetries: 99,
recursive: false
});
@@ -197,14 +194,6 @@ function removeAsync(dir) {
});
common.expectsError(() => {
- validateRmdirOptions({ emfileWait: -1 });
- }, {
- code: 'ERR_OUT_OF_RANGE',
- type: RangeError,
- message: /^The value of "emfileWait" is out of range\./
- });
-
- common.expectsError(() => {
validateRmdirOptions({ maxRetries: -1 });
}, {
code: 'ERR_OUT_OF_RANGE',