Skip to content

Commit 659a4f4

Browse files
changed checkstyle to UserControllerTest.java
1 parent 24143a8 commit 659a4f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

86-
List<UserDTO> userDTOList = om.readValue(body, new TypeReference<>() {});
86+
List<UserDTO> userDTOList = om.readValue(body, new TypeReference<>() { });
8787

8888
var actual = userDTOList.stream().map(userMapper::map).toList();
8989
var expected = userRepository.findAll();

0 commit comments

Comments
 (0)