Skip to content

Commit

Permalink
Fixed Error with Freelancer Register
Browse files Browse the repository at this point in the history
  • Loading branch information
ShimaaBetah committed May 10, 2024
1 parent 54465e2 commit 76cbea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public SignUpAndInResponse Run(FreelancerRegisterRequest request) {
Freelancer.builder()
.withEmail(request.getEmail())
.withPassword_hash(hashPassword(request.getPassword()))
.withFull_name(request.getFullName())
.withFullName(request.getFullName())
.withJob_title(request.getJobTitle())
.withCity(request.getCity())
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void testFreelancerRegister() {
FreelancerRegisterRequest.builder()
.withEmail(freelancer.getEmail())
.withPassword(freelancer.getPassword_hash())
.withFullName(freelancer.getFull_name())
.withFullName(freelancer.getFullName())
.withCity(freelancer.getCity())
.withJobTitle(freelancer.getJob_title())
.withBirthDate(freelancer.getBirthdate())
Expand Down

0 comments on commit 76cbea1

Please sign in to comment.