-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
lib: add space to class string of iterator objects and updated tests accordingly #17558
Conversation
…vent resulting make errors in test files
…vent resulting make errors in test files
Hello, @haejinjo! Welcome, and thanks for this PR! It looks like you checked in three files that are backup files from your editor. These are the files with names that end with |
Using the command find -name "*~" I identified which files in my branch were unnecessary (denoted by the ~ ending in their filename) and removed them from their respective directories in test and lib.
Using the command find -name "*~" I identified which files in my branch were unnecessary (denoted by the ~ ending in their filename) and removed them from their respective directories in test and lib.
Thank you @Trott! I didn't know it was bad to have backup files. Is it just to keep the directory clean and orderly, or do they have more serious risks than is immediately apparent? Anyway, hope everything checks out now! Let me know. |
i think he meant that having backups is good, but they don't really belong in the repo 😄 |
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.
Thanks!
Hi @haejinjo — could you try to get rid of the merge commit in here and rebase without it? Otherwise we can't run the CI and land this. |
CI (without rebasing): https://ci.nodejs.org/job/node-test-commit/14785/ It should be fine if whoever lands this takes care of rebasing the merge commit out |
PR-URL: nodejs#17558 Fixes: nodejs#17540 Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: James M Snell <[email protected]>
Landed in 486290b 🎉 Thanks for the PR! |
PR-URL: #17558 Fixes: #17540 Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #17558 Fixes: #17540 Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #17558 Fixes: #17540 Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #17558 Fixes: #17540 Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: James M Snell <[email protected]>
PR-URL: #17558 Fixes: #17540 Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: James M Snell <[email protected]>
Inserted a space in the string descriptor for URLSearchParamsIterator
in the URL parser API so that it became URLSearchParams Iterator
according to recent changes in the standards.
Sorry I didn't realize my commit message was bad until I read
the guidelines.
Fixes: #17540
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
lib