adamsaghy commented on PR #5671:
URL: https://github.com/apache/fineract/pull/5671#issuecomment-4160826768
SBOM is not a "real" error, it does not fail the build, however spotless is!
```
Execution failed for task ':integration-tests:spotlessJavaCheck'.
> The following files had format violations:
src/test/java/org/apache/fineract/integrationtests/SavingsInterestPostingJobIntegrationTest.java
@@ -247,10 +247,8 @@
············Object·transactionObj·=·this.savingsAccountHelper.getSavingsDetails(savingsId,·"transactions");
············ArrayList<HashMap<String,·Object>>·transactions·=·(ArrayList<HashMap<String,·Object>>)·transactionObj;
-············long·interestPostingsCount·=·transactions.stream()
-····················.filter(t·->·t.get("date").toString().equals("[2022,·4,·12]"))
-····················.filter(t·->·t.get("reversed").toString().equals("false"))
-····················.count();
+············long·interestPostingsCount·=·transactions.stream().filter(t·->·t.get("date").toString().equals("[2022,·4,·12]"))
+····················.filter(t·->·t.get("reversed").toString().equals("false")).count();
············assertEquals(1,·interestPostingsCount,·"Running·job·twice·must·not·create·duplicate·interest·postings·on·the·same·date");
········}·finally·{
@@ -378,4 +376,4 @@
········globalConfigurationHelper.resetAllDefaultGlobalConfigurations();
········globalConfigurationHelper.verifyAllDefaultGlobalConfigurations();
····}
-}
+}
Run './gradlew :integration-tests:spotlessApply' to fix these violations.
```
--
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]