Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
import org.awaitility.core.ConditionFactory;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.MethodOrderer;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestMethodOrder;

import static java.util.concurrent.TimeUnit.MINUTES;
import static java.util.concurrent.TimeUnit.SECONDS;
Expand Down Expand Up @@ -71,6 +73,7 @@
import static org.junit.jupiter.api.Assertions.assertTrue;

@DisplayName("Test to create model in image domain using common mount")
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
@IntegrationTest
public class ItMiiCommonMount {

Expand Down Expand Up @@ -238,7 +241,7 @@ public void testCreateDomainUsingMultipleCommonMounts() {
@Test
@Order(2)
@DisplayName("Test to update data source url in the domain using common mount")
public void testUpdateDataSourceInDomainUsingCommonMount1() {
public void testUpdateDataSourceInDomainUsingCommonMount() {

Path multipleCMPath1 = Paths.get(RESULTS_ROOT, "multiplecmimage1");
Path modelsPath1 = Paths.get(multipleCMPath1.toString(), "models");
Expand Down