From f774807ac4b7aa8ffef79ddd878a19f9bb8a1354 Mon Sep 17 00:00:00 2001 From: jenny <88226911+kmjenny@users.noreply.github.com> Date: Fri, 7 Jun 2024 20:23:11 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20#94=20Common=20=EB=AC=B8=EC=A0=9C=20?= =?UTF-8?q?=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/telepigeon/server/profileTest/ProfileServiceTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/com/telepigeon/server/profileTest/ProfileServiceTest.java b/src/test/java/com/telepigeon/server/profileTest/ProfileServiceTest.java index 03fe07e..192b296 100644 --- a/src/test/java/com/telepigeon/server/profileTest/ProfileServiceTest.java +++ b/src/test/java/com/telepigeon/server/profileTest/ProfileServiceTest.java @@ -130,7 +130,7 @@ public void updateProfileExtraInfoTest() { // When ProfileDto profileDto = new ProfileDto(keywordList, gender.getContent(), ageRange.getContent(), relation.getContent()); - Profile updatedProfile = profileService.updateProfileInfo(roomId, userId, profileDto); + profileService.updateProfileInfo(roomId, userId, profileDto); // Then (method의 호출 검증을 통해 확인) verify(profileUpdater).updateProfileInfo(profile, keyword, gender, ageRange, relation);