Skip to content

Commit 7cc0a46

Browse files
Ahmad NassriBridgeAR
Ahmad Nassri
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 a5ac7b9 commit 7cc0a46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-console-instance.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const err = new Stream();
3333
process.stdout.write = process.stderr.write = common.mustNotCall();
3434

3535
// Make sure that the "Console" function exists.
36-
assert.strictEqual('function', typeof Console);
36+
assert.strictEqual(typeof Console, 'function');
3737

3838
// Make sure that the Console constructor throws
3939
// when not given a writable stream instance.

0 commit comments

Comments
 (0)