Skip to content

Commit

Permalink
refactor: 전화번호 형식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocochip101 committed Jul 31, 2024
1 parent 2748799 commit 90a1e72
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void submit() {
new AnswerCreateRequest(question2.getId(), List.of("온라인"))
);
ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
answerCreateRequests,
true);

Expand All @@ -78,7 +78,7 @@ void submit_rejectPersonalDataCollection() {
new AnswerCreateRequest(question2.getId(), List.of("온라인"))
);
ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
answerCreateRequests,
false);

Expand All @@ -99,7 +99,7 @@ void submit_dashboardWithNoProcess() {
Question question = questionRepository.save(new Question(SHORT_ANSWER, "지원 경로가 어떻게 되나요?", 0, applyForm));

ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
List.of(new AnswerCreateRequest(question.getId(), List.of("온라인"))),
true);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void submit() {
new AnswerCreateRequest(question2.getId(), List.of("온라인"))
);
ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
answerCreateRequests,
true);

Expand All @@ -88,7 +88,7 @@ void submit_dashboardWithNoProcess() {
Question question = questionRepository.save(new Question(SHORT_ANSWER, "지원 경로가 어떻게 되나요?", 0, applyForm));

ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
List.of(new AnswerCreateRequest(question.getId(), List.of("온라인"))),
true);

Expand All @@ -107,7 +107,7 @@ void submit_rejectPersonalDataCollection() {
Question question = questionRepository.save(new Question(SHORT_ANSWER, "지원 경로가 어떻게 되나요?", 0, applyForm));

ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
List.of(new AnswerCreateRequest(question.getId(), List.of("온라인"))),
false);

Expand All @@ -126,7 +126,7 @@ void submit_invalidApplyForm() {
Question question = questionRepository.save(new Question(SHORT_ANSWER, "지원 경로가 어떻게 되나요?", 0, applyForm));

ApplyFormSubmitRequest request = new ApplyFormSubmitRequest(
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "010-0000-0000"),
new ApplicantCreateRequest("초코칩", "dev.chocochip@gmail.com", "01000000000"),
List.of(new AnswerCreateRequest(question.getId(), List.of("온라인"))),
true);

Expand Down

0 comments on commit 90a1e72

Please sign in to comment.