Skip to content

Commit bad65aa

Browse files
ahmadnassriTrott
authored andcommitted
test: strictEqual argument order (actual, expected)
PR-URL: #24137 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
1 parent d070ae2 commit bad65aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-console-instance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const err = new Stream();
3434
process.stdout.write = process.stderr.write = common.mustNotCall();
3535

3636
// Make sure that the "Console" function exists.
37-
assert.strictEqual('function', typeof Console);
37+
assert.strictEqual(typeof Console, 'function');
3838

3939
assert.strictEqual(requiredConsole, global.console);
4040
// Make sure the custom instanceof of Console works

0 commit comments

Comments
 (0)