Skip to content

Commit

Permalink
test: fix SignupJuniorTest
Browse files Browse the repository at this point in the history
  • Loading branch information
ray-yhc committed Jul 24, 2023
1 parent 920abe0 commit e431f92
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ public void setUp(@Autowired WebApplicationContext webApplicationContext, RestDo
juniorSignUpRequest = JuniorSignUpRequest.builder()
.githubId("testGithubId")
.githubOauthId(12345)
.nickName("Test NickName")
.deviceToken("Test DeviceToken")
.profileImageUrl("Test ProfileImageUrl")
.nickName("test-nickname")
.deviceToken("Test_DeviceToken")
.profileImageUrl("http://test.ProfileImageUrl.com/img.png")
.introduction("Test Introduction")
.tagList(Arrays.asList("tag1", "tag2"))
.educationalHistory("Test EducationalHistory")
.realName("Test RealName")
.tagList(Arrays.asList("JAVA", "Python", "JavaScript"))
.educationalHistory("대학생")
.realName("홍길동")
.build();
}

Expand Down

0 comments on commit e431f92

Please sign in to comment.