Skip to content

Commit f1b34f9

Browse files
yahavf6targos
authored andcommitted
test: remove unused argument in assertion
PR-URL: #22113 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Weijia Wang <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent 00b0a62 commit f1b34f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
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)