diff --git a/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt b/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt index 0215593b..22d58f5e 100644 --- a/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt +++ b/src/test/kotlin/kr/co/vividnext/sodalive/v2/creator/channel/adapter/in/web/CreatorChannelHomeControllerTest.kt @@ -123,6 +123,10 @@ class CreatorChannelHomeControllerTest @Autowired constructor( .andExpect(jsonPath("$.data.latestAudioContent.isFirstContent").value(true)) .andExpect(jsonPath("$.data.latestAudioContent.isOriginalSeries").value(true)) .andExpect(jsonPath("$.data.currentLive.isAdult").value(true)) + .andExpect(jsonPath("$.data.schedules[0].isAdult").doesNotExist()) + .andExpect(jsonPath("$.data.channelDonations[0].donationId").doesNotExist()) + .andExpect(jsonPath("$.data.channelDonations[0].memberId").doesNotExist()) + .andExpect(jsonPath("$.data.channelDonations[0].isSecret").doesNotExist()) .andExpect(jsonPath("$.data.series[0].isNew").value(true)) .andExpect(jsonPath("$.data.series[0].isOriginal").value(true))