Skip to content

Commit 24143a8

Browse files
changed checkstyle to TaskStatusControllerTest.java
1 parent 7b16f34 commit 24143a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

76-
List<TaskStatusDTO> taskStatusDTOList = om.readValue(body, new TypeReference<>() {});
76+
List<TaskStatusDTO> taskStatusDTOList = om.readValue(body, new TypeReference<>() { });
7777

7878
var actual = taskStatusDTOList.stream().map(taskStatusMapper::map).toList();
7979
var expected = taskStatusRepository.findAll();

0 commit comments

Comments
 (0)