★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/be40fd1e50Nouvelle 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 BridgeAR committed Nov 13, 2018
1 parent a1f5179 commit be40fd1e50190482bec194049e9178c3814a7712
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 be40fd1

Please sign in to comment.