Skip to content

Commit 7b16f34

Browse files
changed checkstyle to TaskControllerTest.java
1 parent b9ea565 commit 7b16f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/hexlet/code/controller/api/TaskControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void index() throws Exception {
7676
.getResponse();
7777
var body = response.getContentAsString();
7878

79-
List<TaskDTO> taskDTOList = om.readValue(body, new TypeReference<>() {});
79+
List<TaskDTO> taskDTOList = om.readValue(body, new TypeReference<>() { });
8080

8181
var actual = taskDTOList.stream().map(taskMapper::map).toList();
8282
var expected = taskRepository.findAll();

0 commit comments

Comments
 (0)