-
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
subsystem: test #10120
subsystem: test #10120
Conversation
var => const, equal => strictEqual
The commit message should be |
Yay! CI didn't totally blerf on this like it did last time. |
CI is ✅ Since this is (intentionally) a duplicate of a 5-day old PR that already got a bunch of 👍's, plus it's a pretty small and manageable change, I'm going to go ahead and land this. |
* var => const * assert.equal() => assert.strictEqual() PR-URL: nodejs#10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
Landed in 2df3fd9. |
* var => const * assert.equal() => assert.strictEqual() PR-URL: #10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
* var => const * assert.equal() => assert.strictEqual() PR-URL: nodejs#10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
* var => const * assert.equal() => assert.strictEqual() PR-URL: nodejs#10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
* var => const * assert.equal() => assert.strictEqual() PR-URL: #10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
* var => const * assert.equal() => assert.strictEqual() PR-URL: #10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
* var => const * assert.equal() => assert.strictEqual() PR-URL: #10120 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
Checklist
make -j8 test
(UNIX), orvcbuild test nosign
(Windows) passesAffected core subsystem(s)
Description of change
var => const, equal => strictEqual
@Trott