You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/05/02 20:40:10 UTC

[fineract] branch develop updated: add @Ignore to another SchedulerJobsTestResults methods (FINERACT-857)

This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 1baecf2  add @Ignore to another SchedulerJobsTestResults methods (FINERACT-857)
1baecf2 is described below

commit 1baecf27f62cf3631c23a8791303e27123897207
Author: Michael Vorburger <mi...@vorburger.ch>
AuthorDate: Sat May 2 21:03:36 2020 +0200

    add @Ignore to another SchedulerJobsTestResults methods (FINERACT-857)
    
    testUpdateLoanPaidInAdvanceJobOutcome()
---
 .../org/apache/fineract/integrationtests/SchedulerJobsTestResults.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fineract-provider/src/integrationTest/java/org/apache/fineract/integrationtests/SchedulerJobsTestResults.java b/fineract-provider/src/integrationTest/java/org/apache/fineract/integrationtests/SchedulerJobsTestResults.java
index d3b618b..9163da0 100644
--- a/fineract-provider/src/integrationTest/java/org/apache/fineract/integrationtests/SchedulerJobsTestResults.java
+++ b/fineract-provider/src/integrationTest/java/org/apache/fineract/integrationtests/SchedulerJobsTestResults.java
@@ -471,6 +471,7 @@ public class SchedulerJobsTestResults {
     }
 
     @Test
+    @Ignore // TODO FINERACT-857
     public void testUpdateLoanPaidInAdvanceJobOutcome() throws InterruptedException {
         this.schedulerJobHelper = new SchedulerJobHelper(this.requestSpec, this.responseSpec);
         this.loanTransactionHelper = new LoanTransactionHelper(this.requestSpec, this.responseSpec);
@@ -987,7 +988,7 @@ public class SchedulerJobsTestResults {
         return fixedDepositAccountHelper.applyFixedDepositApplication(fixedDepositApplicationJSON, this.requestSpec, this.responseSpec);
     }
 
-    public void validateNumberForEqualExcludePrecission(String val, String val2) {
+    private void validateNumberForEqualExcludePrecission(String val, String val2) {
         DecimalFormat twoDForm = new DecimalFormat("#", new DecimalFormatSymbols(Locale.US));
         Assert.assertTrue(new Float(twoDForm.format(new Float(val))).compareTo(new Float(twoDForm.format(new Float(val2)))) == 0);
     }