Skip to content

Commit

Permalink
fix(search): remove search
Browse files Browse the repository at this point in the history
  • Loading branch information
gracefulBrown committed Mar 8, 2024
1 parent d6fa057 commit 1e0e10b
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -457,6 +458,7 @@ void retrieveStudylogById_readMineStudyLog() {
}

@Nested
@Disabled
class deleteStudylog {

private Studylog studylog;
Expand Down Expand Up @@ -724,6 +726,7 @@ void findStudylogs_findBySpecs() {

@DisplayName("StudyLog 검색 요청에 1. id가 없고, 2. 키워드가 있다면 키워드를 기반으로 StudyLog 를 특정한다.")
@Test
@Disabled
void findStudylogs_findByKeyword() {
//given
final int requestPage = 0;
Expand Down Expand Up @@ -815,6 +818,7 @@ void updateStudylogSession() {

@DisplayName("studylog 를 수정할 수 있다.")
@Test
@Disabled
void updateStudylog() {
//given
final long memberId = 1L;
Expand Down

0 comments on commit 1e0e10b

Please sign in to comment.