★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/0f98c4926aNouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
test: fix strictEqual() arguments order
PR-URL: #23771
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
fraxken authored and rvagg committed Nov 28, 2018
1 parent 73d19b1 commit 0f98c4926a620379cff8dbee7cd4619c9f30f4a1
Showing with 2 additions and 2 deletions.
  1. +2 −2 test/parallel/test-http-parser-bad-ref.js
@@ -81,7 +81,7 @@ demoBug('POST /1/22 HTTP/1.1\r\n' +
'pong');

process.on('exit', function() {
assert.strictEqual(2, headersComplete);
assert.strictEqual(2, messagesComplete);
assert.strictEqual(headersComplete, 2);
assert.strictEqual(messagesComplete, 2);
console.log('done!');
});

0 comments on commit 0f98c49

Please sign in to comment.