Skip to content

Commit

Permalink
refactor: 불필요한 코드 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeuk520 committed Sep 19, 2024
1 parent 6a1bdde commit 906ab30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/ku/covigator/service/S3Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class S3Service {

private final AmazonS3Client s3Client;
private final S3Properties s3Properties;
private final static String PROFILE_IMAGE_BASE_DIRECTORY = "profile-image/";
private static final String PROFILE_IMAGE_BASE_DIRECTORY = "profile-image/";

public String uploadImage(MultipartFile multipartFile) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void signInWithInvalidPassword() {

@DisplayName("로컬 회원 가입 시 같은 플랫폼에 대한 중복 회원이 아닌 경우 정상적으로 회원 가입 되어 토큰을 반환한다.")
@Test
void signUpLocalSuccessIfThereIsNoDuplicateMember() throws IOException {
void signUpLocalSuccessIfThereIsNoDuplicateMember() {
//given
Member member = Member.builder()
.email("covi@naver.com")
Expand Down

0 comments on commit 906ab30

Please sign in to comment.