Skip to content

Commit

Permalink
#18 fix: 로그인 테스트-회원가입 테스트에 의존하지 않도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JoongHyun-Kim committed Jan 25, 2024
1 parent 2c23949 commit dcaca6e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ public void signup() throws BaseException {
public void login() throws BaseException {

// given
signup();
SignupRequest signupRequest = new SignupRequest("nickname", "id", "pw", "pw", "01012345678");
userService.signup(signupRequest);

LoginRequest loginRequest = new LoginRequest("id", "pw");

// when
Expand Down

0 comments on commit dcaca6e

Please sign in to comment.