Skip to content

Commit

Permalink
test: 테스트 수정 및 성공 확인
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-seong committed Feb 29, 2024
1 parent f41d6cd commit 7e0b2d8
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ public UserServiceImplTest(@Autowired UserService userService) {
}
@Test
void 생성_및_조회() {
User user = User.builder().name("우성").nickname("우스").build();
User user = User.builder()
.oauthId("asd")
.name("우성")
.nickname("우스")
.email("[email protected]")
.build();

User createdUser = userService.create(user);

Expand Down

0 comments on commit 7e0b2d8

Please sign in to comment.