Skip to content

Commit

Permalink
[Improvement-12804][UT] Remove the unused method in DataAnalysisContr…
Browse files Browse the repository at this point in the history
…ollerTest (#12805)
  • Loading branch information
rickchengx authored Nov 21, 2022
1 parent 27c00ed commit d09e02e
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,19 +142,4 @@ public void testCountQueueState() throws Exception {
assertThat(result.getCode().intValue()).isEqualTo(Status.SUCCESS.getCode());
logger.info(mvcResult.getResponse().getContentAsString());
}

/**
* get mock Project
*
* @param projectName projectName
* @return Project
*/
private Project getProject(String projectName) {
Project project = new Project();
project.setCode(11L);
project.setId(1);
project.setName(projectName);
project.setUserId(1);
return project;
}
}

0 comments on commit d09e02e

Please sign in to comment.