summaryrefslogtreecommitdiff
path: root/test/parallel/test-next-tick.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-next-tick.js')
-rw-r--r--test/parallel/test-next-tick.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-next-tick.js b/test/parallel/test-next-tick.js
index 896e895aa9..9c69efeb78 100644
--- a/test/parallel/test-next-tick.js
+++ b/test/parallel/test-next-tick.js
@@ -25,15 +25,15 @@ const assert = require('assert');
process.nextTick(common.mustCall(function() {
process.nextTick(common.mustCall(function() {
- process.nextTick(common.mustCall(function() {}));
+ process.nextTick(common.mustCall());
}));
}));
setTimeout(common.mustCall(function() {
- process.nextTick(common.mustCall(function() {}));
+ process.nextTick(common.mustCall());
}), 50);
-process.nextTick(common.mustCall(function() {}));
+process.nextTick(common.mustCall());
const obj = {};