Skip to content

Commit

Permalink
fix: merge 후 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GIVEN53 committed Sep 30, 2023
1 parent d7bb6b9 commit 0c1fc1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
@SpringBootTest
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class ExerciseGuideSearchServiceTest {
@Autowired
private ExerciseGuideSearchService exerciseGuideSearchService;
@Autowired
private ExerciseGuideRepository exerciseGuideRepository;
private final User 테오 = 유저_테오();
private final String 테오_아이디 = 테오.getOauthId();
private final LocalDate 저장_날짜_Date = LocalDate.parse("2023-12-31").plusDays(1);
private final LocalDate 조회_날짜_Date = LocalDate.parse("2023-12-31");
private final String 가이드가_존재하지_않는_날짜 = "3000-12-31";
@Autowired
private ExerciseGuideSearchService exerciseGuideSearchService;
@Autowired
private ExerciseGuideRepository exerciseGuideRepository;
private ExerciseGuide 저장한_운동_가이드;

@BeforeAll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
import com.coniverse.dangjang.domain.guide.weight.controller.WeightGuideController;
import com.coniverse.dangjang.domain.guide.weight.service.WeightGuideSearchService;
import com.coniverse.dangjang.domain.healthmetric.controller.HealthConnectController;
import com.coniverse.dangjang.domain.healthmetric.controller.HealthMetricRegisterController;
import com.coniverse.dangjang.domain.healthmetric.controller.HealthConnectController;
import com.coniverse.dangjang.domain.healthmetric.controller.HealthMetricController;
import com.coniverse.dangjang.domain.healthmetric.service.HealthConnectRegisterService;
import com.coniverse.dangjang.domain.healthmetric.service.HealthMetricChartSearchService;
Expand Down Expand Up @@ -55,7 +53,7 @@
ExerciseGuideController.class,
BloodSugarGuideController.class,
HealthConnectController.class,
GuideController.class
GuideController.class,
AppLogController.class
},
includeFilters = @ComponentScan.Filter(classes = {EnableWebSecurity.class}))
Expand Down

0 comments on commit 0c1fc1f

Please sign in to comment.