vidakovic commented on a change in pull request #2013:
URL: https://github.com/apache/fineract/pull/2013#discussion_r777460966
##########
File path:
integration-tests/src/test/java/org/apache/fineract/integrationtests/LoanDisbursementDetailsIntegrationTest.java
##########
@@ -76,7 +76,7 @@ public void createAndValidateMultiDisburseLoansBasedOnEmi() {
String withoutInstallmentAmount = "";
String proposedAmount = "10000";
createTranches.add(this.loanTransactionHelper.createTrancheDetail(id,
"01 June 2015", "5000"));
- createTranches.add(this.loanTransactionHelper.createTrancheDetail(id,
"01 Sep 2015", "5000"));
+ createTranches.add(this.loanTransactionHelper.createTrancheDetail(id,
"01 September 2015", "5000"));
Review comment:
Yes, that's exactly what was the problem here. I additionally verified
by doing the reverse (creating a `LocalDate` on `2015-09-15` and print it out
on the console with pattern `dd MMMM yyyy` and it prints out exactly above
string. Curious, but seems like someone tightened the screws in JDK17. I think
it actually makes sense, `Sep` is an abbreviation vs. `September` is the full
month name (which is exactly the same behavior for the other months.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]