Skip to content

Commit

Permalink
test: switch assertEqual arguments
Browse files Browse the repository at this point in the history
PR-URL: #27913
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Сковорода Никита Андреевич <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
  • Loading branch information
zeckson authored and targos committed May 28, 2019
1 parent e7966bc commit b117f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-net-binary.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ echoServer.on('listening', function() {
});

process.on('exit', function() {
assert.strictEqual(2 * 256, recv.length);
assert.strictEqual(recv.length, 2 * 256);

const a = recv.split('');

Expand Down

0 comments on commit b117f6d

Please sign in to comment.