We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0525a3 commit 00ab42aCopy full SHA for 00ab42a
src/test/java/org/gridsuite/study/server/StudyTest.java
@@ -769,9 +769,7 @@ public void test() throws Exception {
769
.andExpectAll(status().isOk(), content().contentType(MediaType.APPLICATION_JSON)).andReturn();
770
771
resultAsString = result.getResponse().getContentAsString();
772
- List<CreatedStudyBasicInfos> createdStudyBasicInfosList = mapper.readValue(resultAsString,
773
- new TypeReference<List<CreatedStudyBasicInfos>>() {
774
- });
+ List<CreatedStudyBasicInfos> createdStudyBasicInfosList = mapper.readValue(resultAsString, new TypeReference<>() { });
775
776
assertThat(createdStudyBasicInfosList.get(0), createMatcherCreatedStudyBasicInfos(studyUuid, "UCTE"));
777
0 commit comments