★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/2e0d3c9de9Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files

test: fix order in assert.strictEqual to actual, expected

PR-URL: #24184
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
  • Loading branch information...
Kevin Seidel authored and MylesBorins committed Nov 6, 2018
1 parent b63e9cb commit 2e0d3c9de905d79f12aa309b6c7db4e1e747c94b
Showing with 1 addition and 1 deletion.
  1. +1 −1 test/addons-napi/test_make_callback/test.js
@@ -14,7 +14,7 @@ function myMultiArgFunc(arg1, arg2, arg3) {
}

assert.strictEqual(makeCallback(process, common.mustCall(function() {
assert.strictEqual(0, arguments.length);
assert.strictEqual(arguments.length, 0);
assert.strictEqual(this, process);
return 42;
})), 42);

0 comments on commit 2e0d3c9

Please sign in to comment.
You can’t perform that action at this time.