We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.
If you are using IE 11, make sure you turn off "Compatibility View".
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
|
CI is running on https://ci.nodejs.org/job/node-test-pull-request/4826/ |
One CI error is in Centos7-64 due to missing g++ in the build environment. Others are fine.
LGTM.
Could you revise your commit message to describe your improvement of using strict assert checks?
|
Sure, of course! |
|
I added description of the change in commit message. |
| @@ -232,7 +232,7 @@ test('high watermark push', function(t) { | ||
| r._read = function(n) {}; | ||
| for (var i = 0; i < 6; i++) { | ||
| var bool = r.push(i); | ||
| - assert.equal(bool, i === 5 ? false : true); | ||
| + assert.strictEqual(bool, i === 5 ? false : true); |
|
Thanks. Landed in 8ca322d. |
|
Thanks! |
kt3k commentedNov 12, 2016
Checklist
make -j8 test(UNIX), orvcbuild test nosign(Windows) passesAffected core subsystem(s)
test, stream
Description of change
This commit improves the assertions of
test-stream2-objects.js.
This is a part of Code And Learn at NodeFest 2016 Challenge
nodejs/code-and-learn#58