Skip to content

Commit

Permalink
test: switch assertEqual arguments
Browse files Browse the repository at this point in the history
PR-URL: #27912
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
zeckson authored and ChALkeR committed May 28, 2019
1 parent 42d8011 commit b810607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/fixtures/GH-892-request.js
Expand Up @@ -37,7 +37,7 @@ var options = {
};

var req = https.request(options, function(res) {
assert.strictEqual(200, res.statusCode);
assert.strictEqual(res.statusCode, 200);
gotResponse = true;
console.error('DONE');
res.resume();
Expand Down

0 comments on commit b810607

Please sign in to comment.