ofuks commented on a change in pull request #611: [DLAB-1510] All resourses are stopped with project URL: https://github.com/apache/incubator-dlab/pull/611#discussion_r386367527
########## File path: services/self-service/src/test/java/com/epam/dlab/backendapi/resources/ProjectResourceTest.java ########## @@ -98,4 +115,11 @@ public void generateKeysWithException() { verify(keyService).generateKeys(getUserInfo()); verifyNoMoreInteractions(keyService); } -} \ No newline at end of file + + private ProjectActionFormDTO getProjectAvtionDTO() { + List<String> endPoints = new ArrayList<>(); + endPoints.add("https://localhost:8083/"); + String projectName = "DLAB"; + return new ProjectActionFormDTO(projectName, endPoints); Review comment: Use Collections.singletonList insead of ** endPoints**. And inline ProjectActionFormDTO object creation ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@dlab.apache.org For additional commands, e-mail: dev-h...@dlab.apache.org