-
Notifications
You must be signed in to change notification settings - Fork 495
Cleanup tests #2 #7753
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
Cleanup tests #2 #7753
Conversation
@@ -5188,9 +5188,9 @@ | |||
client: | |||
type: browser | |||
name: CCleaner | |||
version: "99.0.4844.51" | |||
version: 99.0.4844.51 |
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.
This might actually cause problems for some of the forks to other languages. If I remember correctly some yaml parsers try to handle that as number when the "
are left away.
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.
It was me who reported a problem with float values for versions #7633
version: 99.0
nodejs convert to number
result 99
version: 99.1
nodejs convert to number
result 99.1
version: "99.1"
nodejs convert to string
result 99.1
version: 99.0.4844.51
nodejs convert to string
result 99.0.4844.51
we have long replaced the versions for the formats and there were no complaints that something was broken.
This is a follow up to #7652.
oss.yml
- was missing from the script (#7752).clienthints.yml
- I forgot to clean this file in the initial PR.The other commits are cleanups for commits merged after the initial PR.