Skip to content

Commit c188ca0

Browse files
committed
Remove unused 3rd argument in assert.strictEqual()
1 parent 3ffd689 commit c188ca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/addons-napi/test_async/test-loop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const iterations = 500;
66

77
let x = 0;
88
const workDone = common.mustCall((status) => {
9-
assert.strictEqual(status, 0, 'Work completed successfully');
9+
assert.strictEqual(status, 0);
1010
if (++x < iterations) {
1111
setImmediate(() => test_async.DoRepeatedWork(workDone));
1212
}

0 commit comments

Comments
 (0)