vorburger commented on a change in pull request #1149:
URL: https://github.com/apache/fineract/pull/1149#discussion_r453985252
##########
File path:
fineract-provider/src/integrationTest/java/org/apache/fineract/integrationtests/AccountingScenarioIntegrationTest.java
##########
@@ -802,10 +802,10 @@ public void
checkPeriodicAccrualAccountingTillCurrentDateFlow() throws Interrupt
float totalInterest = (float)
loanSchedule.get(1).get("interestOriginalDue");
DecimalFormat numberFormat = new DecimalFormat("#.00", new
DecimalFormatSymbols(Locale.US));
- float INTEREST_4_DAYS = totalInterest / totalDaysInPeriod * 4;
- INTEREST_4_DAYS = Float.valueOf(numberFormat.format(INTEREST_4_DAYS));
+ float interest4Days = totalInterest / totalDaysInPeriod * 4;
+ interest4Days = Float.valueOf(numberFormat.format(interest4Days));
Review comment:
No I just meant the Float value format thing in the 2nd line that looks
weird, to me.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]