You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by bh...@apache.org on 2019/11/08 12:12:54 UTC

[incubator-dlab] branch develop updated: DLAB-000 unit test fixed

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

bhliva pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git


The following commit(s) were added to refs/heads/develop by this push:
     new 032493c  DLAB-000 unit test fixed
032493c is described below

commit 032493ce81aae246be42166a35fcad8ef1844a12
Author: bhliva <bo...@epam.com>
AuthorDate: Fri Nov 8 14:12:42 2019 +0200

    DLAB-000 unit test fixed
---
 .../dlab/backendapi/service/impl/ExploratoryServiceImplTest.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/services/self-service/src/test/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImplTest.java b/services/self-service/src/test/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImplTest.java
index aa02ccd..c58703f 100644
--- a/services/self-service/src/test/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImplTest.java
+++ b/services/self-service/src/test/java/com/epam/dlab/backendapi/service/impl/ExploratoryServiceImplTest.java
@@ -138,7 +138,7 @@ public class ExploratoryServiceImplTest {
 		try {
 			exploratoryService.start(userInfo, EXPLORATORY_NAME, "project");
 		} catch (DlabException e) {
-			assertEquals("Could not exploratory/start exploratory environment expName: Exploratory for user with " +
+			assertEquals("Could not start exploratory environment expName: Exploratory for user with " +
 					"name not found", e.getMessage());
 		}
 		statusEnvBaseDTO = getStatusEnvBaseDTOWithStatus("starting");
@@ -190,7 +190,7 @@ public class ExploratoryServiceImplTest {
 		try {
 			exploratoryService.stop(userInfo, EXPLORATORY_NAME);
 		} catch (DlabException e) {
-			assertEquals("Could not exploratory/stop exploratory environment expName: Exploratory for user with " +
+			assertEquals("Could not stop exploratory environment expName: Exploratory for user with " +
 					"name not found", e.getMessage());
 		}
 		statusEnvBaseDTO = getStatusEnvBaseDTOWithStatus("stopping");
@@ -243,7 +243,7 @@ public class ExploratoryServiceImplTest {
 		try {
 			exploratoryService.terminate(userInfo, EXPLORATORY_NAME);
 		} catch (DlabException e) {
-			assertEquals("Could not exploratory/terminate exploratory environment expName: Exploratory for user " +
+			assertEquals("Could not terminate exploratory environment expName: Exploratory for user " +
 					"with name not found", e.getMessage());
 		}
 		statusEnvBaseDTO = getStatusEnvBaseDTOWithStatus("terminating");


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org