airajena commented on code in PR #5367:
URL: https://github.com/apache/fineract/pull/5367#discussion_r2796526077
##########
integration-tests/src/test/java/org/apache/fineract/integrationtests/savings/SavingsInterestPostingTest.java:
##########
@@ -39,6 +42,14 @@
@ExtendWith({ SavingsTestLifecycleExtension.class })
public class SavingsInterestPostingTest extends BaseSavingsIntegrationTest {
+ private static final ThreadLocal<FineractClient> THREAD_LOCAL_CLIENT =
ThreadLocal.withInitial(
+ () ->
FineractClientHelper.createNewFineractClient(ConfigProperties.Backend.USERNAME,
ConfigProperties.Backend.PASSWORD));
+
+ @Override
+ protected FineractClient fineractClient() {
+ return THREAD_LOCAL_CLIENT.get();
+ }
+
Review Comment:
Yes removed the unrelated change.
--
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]