Skip to content

Commit

Permalink
refactor: 모호한 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SproutMJ committed Jul 22, 2023
1 parent 1179f6c commit 68a0561
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ void failGetScheduleWhichIsNot() {
@DisplayName("멤버가 소유하지 않은 팀플레이스의 특정 일정을 조회하면 실패한다.")
void failMemberHasNotTeamPlaceSchedule() {
// given
final Long teamPlaceId = 2L;
final Long wrongScheduleId = 7L;
final Long unParticipatedTeamPlaceId = 2L;
final Long scheduleIdInTeamPlace = 7L;

// when
final ExtractableResponse<Response> response = requestSpecificSchedule(wrongScheduleId, teamPlaceId);
final ExtractableResponse<Response> response = requestSpecificSchedule(scheduleIdInTeamPlace, unParticipatedTeamPlaceId);

// then
assertThat(response.statusCode()).isEqualTo(HttpStatus.FORBIDDEN.value());
Expand Down

0 comments on commit 68a0561

Please sign in to comment.