Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] profileResponse DTO 변경 - 별자리 out, 혈액형 on #32

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"AB형" 으로 오는것으로 알고있어요!

"subwayNames": []
},
"similarity": 40,
Expand Down
Loading