Skip to content

Commit 06a0492

Browse files
committed
test: 기대하는 값이랑 다른 테스트 응답을 수정합니다
1 parent 5613500 commit 06a0492

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/com/example/solidconnection/admin/service/AdminMentorApplicationServiceTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import org.springframework.data.domain.Pageable;
2626

2727
@TestContainerSpringBootTest
28-
@DisplayName("어학 검증 관리자 서비스 테스트")
28+
@DisplayName("멘토 지원서 관리자 서비스 테스트")
2929
class AdminMentorApplicationServiceTest {
3030

3131
@Autowired
@@ -166,7 +166,7 @@ class 멘토_승격_지원서_목록_조회 {
166166
String countryKoreanName = "오스트리아";
167167
MentorApplicationSearchCondition condition = new MentorApplicationSearchCondition(null, countryKoreanName, null);
168168
Pageable pageable = PageRequest.of(0, 10);
169-
List<MentorApplication> expectedMentorApplications = List.of(mentorApplication2, mentorApplication6);
169+
List<MentorApplication> expectedMentorApplications = List.of(mentorApplication3, mentorApplication4);
170170

171171
// when
172172
Page<MentorApplicationSearchResponse> response = adminMentorApplicationService.searchMentorApplications(condition, pageable);

0 commit comments

Comments
 (0)