Skip to content

Commit

Permalink
refactor: 버전 변경에 따른 spotless version up
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Dec 10, 2024
1 parent 5fe2c8f commit af11eea
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'org.springframework.boot' version '3.4.0'
id 'io.spring.dependency-management' version '1.1.6'
id 'com.diffplug.spotless' version '6.11.0'
id 'com.diffplug.spotless' version '6.21.0'
id 'jacoco'
id 'org.sonarqube' version '4.4.1.3373'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
class FollowControllerTest {
@Autowired private MockMvc mockMvc;
@Autowired private ObjectMapper objectMapper;
@MockitoBean
private FollowService followService;
@MockitoBean private FollowService followService;

@Nested
class 팔로우를_추가할_때 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
class ImageControllerTest {
@Autowired private MockMvc mockMvc;
@Autowired private ObjectMapper objectMapper;
@MockitoBean
private ImageService imageService;
@MockitoBean private ImageService imageService;

@Nested
class 미션_기록_이미지_PresignedUrl을_생성할_때 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ class MissionControllerTest {

@Autowired private MockMvc mockMvc;
@Autowired private ObjectMapper objectMapper;
@MockitoBean
private MissionService missionService;
@MockitoBean private MissionService missionService;

@Test
void 공부미션을_생성한다() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ class MissionRecordServiceTest {
@Autowired MissionRepository missionRepository;
@Autowired MissionRecordRepository missionRecordRepository;
@Autowired ReactionRepository reactionRepository;
@MockitoBean
SecurityUtil securityUtil;
@MockitoBean SecurityUtil securityUtil;
private Member member;
private Mission mission;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ class NotificationServiceTest {

@Autowired private MemberUtil memberUtil;

@MockitoBean
private FcmService fcmService;
@MockitoBean private FcmService fcmService;

@Autowired private MissionRepository missionRepository;

Expand Down

0 comments on commit af11eea

Please sign in to comment.