Skip to content

Commit

Permalink
test: switch assertEqual arguments
Browse files Browse the repository at this point in the history
PR-URL: nodejs#27913
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
zeckson authored and Trott committed May 27, 2019
1 parent 4f9cd27 commit 3545a3f
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 3545a3f

Please sign in to comment.