fix: Date test in another Locale#327
Merged
hiranya911 merged 3 commits intofirebase:masterfrom Nov 6, 2019
Merged
Conversation
hiranya911
suggested changes
Nov 6, 2019
Contributor
hiranya911
left a comment
There was a problem hiding this comment.
Thanks @sakebook. Just one change needed, and then we can merge.
| new SimpleDateFormat(PATTERN_RFC1123), | ||
| new SimpleDateFormat(PATTERN_RFC1036), | ||
| new SimpleDateFormat(PATTERN_ASCTIME) | ||
| new SimpleDateFormat(PATTERN_RFC1123, Locale.UK), |
Contributor
There was a problem hiding this comment.
Let's follow what http://svn.apache.org/repos/asf/httpcomponents/httpclient/tags/4.3/httpclient/src/main/java/org/apache/http/client/utils/DateUtils.java does and set to Locale.US.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Discussion
No issue.
Current Date test is depend on Locale(GMT).
I ran the test on my local machine and it was not successful.
This is because the Japanese locale (JMT) is used.
I defined use Locale.US.
Testing
Fixed test
API Changes
None
RELEASE NOTE: Fixed a bug in date string parsing during error handling.