Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ed9f8ac

Browse files
rmarkins-godaddyMylesBorins
authored andcommittedOct 30, 2018
test: correct assert test
PR-URL: #23463 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent eac6ba9 commit ed9f8ac

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
@@ -72,7 +72,7 @@ c.log('test');
7272
c.error('test');
7373

7474
out.write = common.mustCall((d) => {
75-
assert.strictEqual('{ foo: 1 }\n', d);
75+
assert.strictEqual(d, '{ foo: 1 }\n');
7676
});
7777

7878
c.dir({ foo: 1 });

0 commit comments

Comments
 (0)
Please sign in to comment.