-
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: change ERR_INVALID_ARG_VALUE error message #35156
Conversation
@@ -12,7 +12,7 @@ const dnsPromises = require('dns').promises; | |||
{ | |||
code: 'ERR_INVALID_ARG_VALUE', | |||
name: 'TypeError', | |||
message: `The argument 'rrtype' is invalid. Received '${rrtype}'` | |||
message: `The 'rrtype' is invalid. Received '${rrtype}' argument` |
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.
Looks like argument ended up in the wrong place in this string?
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.
Oh, good catch. Do we have a make command to run all tests?
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.
make test-all-suites
I would have used make test-all
but it was already taken.
This would need a rebase. |
This issue/PR was marked as stalled, it will be automatically closed in 30 days. If it should remain open, please leave a comment explaining why it should remain open. |
Closing this because it has stalled. Feel free to reopen if this issue/PR is still relevant, or to ping the collaborator who labelled it stalled if you have any questions. |
Refs: #34682
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes/cc @BridgeAR @jasnell @Trott