-
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
test: fix test-datetime-change-notify after daylight change #40670
Conversation
test-linux has failed in #40669 on test-datetime-change-notfy because of today's change in timezone related to daylight saving |
Fast-track has been requested by @targos. Please 👍 to approve. |
@PiotrRybak thanks for the PR! Could you please update the commit message to fix the typo (notfy -> notify) ? |
Add standard timezone name for Dublin without daylight saving
2d67e0f
to
db6785e
Compare
Fixed it, sorry about that |
@@ -26,7 +26,7 @@ const cases = [ | |||
}, | |||
{ | |||
timeZone: 'Europe/Dublin', | |||
expected: /Irish/, | |||
expected: /(Irish Standard Time|Greenwich Mean Time)/, |
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's probably best to avoid unnecessary groups:
expected: /(Irish Standard Time|Greenwich Mean Time)/, | |
expected: /Irish Standard Time|Greenwich Mean Time/, |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Note that #40684 exists now. |
It retains @PiotrRybak as the author of the commit that fixes this. Thanks, @PiotrRybak! |
For the record, this PR was effectively merged as 747ef34. Thank you for the contribution @PiotrRybak! |
Could this go into 16.10.1 ? |
Right, thanks. |
Add standard timezone name for Dublin without daylight saving