-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Fix DomainError when parsing DateTime #22198
Conversation
@@ -432,3 +432,14 @@ end | |||
|
|||
# Issue #21504 | |||
@test isnull(tryparse(Dates.Date, "0-1000")) | |||
|
|||
# Issue #22100 |
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.
Perhaps make a testset of this issue tests? Simplifies for whoever converts this file to @testset
s later on
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.
That sounds resasonable to me
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.
Done
32-bit failure on Appveyor is unrelated. Should I trigger a new build? |
I don't think that is needed. |
* Fix DomainError when parsing DateTime * Converted tests into a testset (cherry picked from commit abf3bce)
Fixes #22100