-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: use const and strictEqual in child-process-spawn-error #9951
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
First line in the commit msg is too long,
why not test: refactor child-process-spawn-error
?
- Using const instead of var for assignments. - let is not used since there are no reassignments or block scopes. - assert.equals was changed to assert.strictEquals
All CI is green except for one host that is still building v8. Consulted with someone from the Build team, and it seems like that's normal when there's a cherry-pick from v8 like there was recently. So...while that's still going, I'm going to start another CI on a host of the same type and hope that it's got the build cached and finishes faster: https://ci.nodejs.org/job/node-test-commit-arm/6292/nodes=armv7-wheezy/ |
Both jobs finished successfully. Landing! |
Use const instead of var for assignments. PR-URL: nodejs#9951 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Landed in 5be66db |
Thanks for the contribution! 🎉 |
Use const instead of var for assignments. PR-URL: #9951 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Use const instead of var for assignments. PR-URL: nodejs#9951 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Use const instead of var for assignments. PR-URL: nodejs#9951 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Use const instead of var for assignments. PR-URL: #9951 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Checklist
make -j8 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
test
Description of change