-
-
Notifications
You must be signed in to change notification settings - Fork 359
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
AnnotationExtractor: fix tests on windows #111
Conversation
ready to land |
What exactly is going on here? This looks like a workaround for a bug in regex. We should fix the bug in regex instead. Ideally with link to verification on https://regex101.com/ |
It seems the regex is matching \r\n and therefore the \r\n is part of the matched url at the very end Actually it could be reduced to a |
If |
Fix verified. Ready to land |
regarding the regex. question is, why does https://3v4l.org/nU270 match the string without a ending newline, but https://3v4l.org/G9NNG contains the ending newline in the matched string |
fixed the regex and reverted the |
@TomasVotruba good to go |
Thank you 👍 Elegant fix |
fixes failing windows test