This is an automated email from the ASF dual-hosted git repository.
adamsaghy 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 185551c57 FINERACT-1724: Fix integration test order
185551c57 is described below
commit 185551c572f3af85399b924d8ba84ce50c3388d7
Author: Adam Saghy <[email protected]>
AuthorDate: Thu Apr 6 23:03:25 2023 +0200
FINERACT-1724: Fix integration test order
---
.../integrationtests/LoanCOBCatchUpInstanceModeIntegrationTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/integration-tests/src/test/java/org/apache/fineract/integrationtests/LoanCOBCatchUpInstanceModeIntegrationTest.java
b/integration-tests/src/test/java/org/apache/fineract/integrationtests/LoanCOBCatchUpInstanceModeIntegrationTest.java
index fee1c902d..ba0a1dd46 100644
---
a/integration-tests/src/test/java/org/apache/fineract/integrationtests/LoanCOBCatchUpInstanceModeIntegrationTest.java
+++
b/integration-tests/src/test/java/org/apache/fineract/integrationtests/LoanCOBCatchUpInstanceModeIntegrationTest.java
@@ -38,9 +38,11 @@ import
org.apache.fineract.integrationtests.support.instancemode.ConfigureInstan
import
org.apache.fineract.integrationtests.support.instancemode.InstanceModeSupportExtension;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
+@Order(1)
@ExtendWith(InstanceModeSupportExtension.class)
public class LoanCOBCatchUpInstanceModeIntegrationTest {