Skip to content

Commit

Permalink
fix: 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Juhongseok committed Nov 29, 2023
1 parent 3234fd4 commit 8a010c3
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 @@ -30,7 +30,7 @@ public class MenteeToEventController {

private final MenteeToEventService applyService;

@GetMapping("/{eventId")
@GetMapping("/{eventId}")
public IdResponse getParticipantRecord(@PathVariable Long eventId, @AuthenticationPrincipal JwtUser user) {
Long menteeId = user.id();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class MenteeToEventControllerTest extends ControllerUnitTest {
long eventId = 1L;

// when
ResultActions result = mvc.perform(get("/api/v1/appliments/event/{eventId}", eventId));
ResultActions result = mvc.perform(get("/api/v1/appliments/events/{eventId}", eventId));

// then
result
Expand Down

0 comments on commit 8a010c3

Please sign in to comment.