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

PR-URL: https://github.com/nodejs/node/pull/24184
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This commit is contained in:
Kevin Seidel 2018-11-06 17:06:28 +01:00 committed by Rich Trott
parent 2672582043
commit aba0c945eb

View File

@ -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);