Skip to content

Commit

Permalink
[fix] profileResponse DTO 변경 - 별자리 out, 혈액형 on (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune authored Feb 4, 2024
1 parent 12bb868 commit 89f5ee7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ data class ProfileResponse(
val clubs: List<String> = listOf(),
@SerialName("mbti")
val mbti: String = "",
@SerialName("constellation")
val constellation: String = "",
@SerialName("bloodType")
val bloodType: String = "",
@SerialName("subwayNames")
val subwayNames: List<String> = listOf(),
)
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ internal class MatchingServiceTest {
MatchingResponse(
profile =
ProfileResponse(
"aaa",
"안드로이드",
listOf(),
"ENFJ",
"전갈자리",
listOf(),
name = "aaa",
jobGroup = "개발자",
clubs = listOf("DEPROMEET"),
mbti = "ENFJ",
bloodType = "AB",
subwayNames = listOf(),
),
similarity = 40,
chemistryInfos =
Expand Down
6 changes: 3 additions & 3 deletions core/network/src/test/res/matching_result.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"data": {
"profile": {
"name": "aaa",
"jobGroup": "안드로이드",
"clubs": [],
"jobGroup": "개발자",
"clubs": ["DEPROMEET"],
"mbti": "ENFJ",
"constellation": "전갈자리",
"bloodType": "AB",
"subwayNames": []
},
"similarity": 40,
Expand Down

0 comments on commit 89f5ee7

Please sign in to comment.