@@ -46,7 +46,6 @@ class FeedbackEndpointsTest {
4646 val channelCreationDto = FeedbackChannelCreationDTO (
4747 title = " Introduction to Kotlin" ,
4848 speakers = listOf (" John Doe" , " Jane Smith" ),
49- channelPrefix = " kotlin" ,
5049 ratingCategories = listOf (
5150 FeedbackChannelRatingCategoryDTO (id = null , title = " Content Quality" ),
5251 FeedbackChannelRatingCategoryDTO (id = null , title = " Presentation" )
@@ -83,7 +82,6 @@ class FeedbackEndpointsTest {
8382 val channelCreationDto = FeedbackChannelCreationDTO (
8483 title = " Advanced Java" ,
8584 speakers = listOf (" Alice Brown" ),
86- channelPrefix = " java" ,
8785 ratingCategories = listOf (
8886 FeedbackChannelRatingCategoryDTO (id = null , title = " Content" ),
8987 FeedbackChannelRatingCategoryDTO (id = null , title = " Delivery" )
@@ -164,7 +162,6 @@ class FeedbackEndpointsTest {
164162 val channelCreationDto = FeedbackChannelCreationDTO (
165163 title = " Spring Boot Basics" ,
166164 speakers = listOf (" Bob Wilson" ),
167- channelPrefix = " spring" ,
168165 ratingCategories = listOf (
169166 FeedbackChannelRatingCategoryDTO (id = null , title = " Technical Depth" )
170167 )
@@ -216,7 +213,6 @@ class FeedbackEndpointsTest {
216213 val channelCreationDto = FeedbackChannelCreationDTO (
217214 title = " Session $index " ,
218215 speakers = listOf (" Speaker $index " ),
219- channelPrefix = " test" ,
220216 ratingCategories = listOf (
221217 FeedbackChannelRatingCategoryDTO (id = null , title = " Rating" )
222218 )
@@ -255,7 +251,6 @@ class FeedbackEndpointsTest {
255251 FeedbackChannelCreationDTO (
256252 title = " Kotlin Coroutines" ,
257253 speakers = listOf (" Alice" , " Bob" ),
258- channelPrefix = " coroutines" ,
259254 ratingCategories = listOf (
260255 FeedbackChannelRatingCategoryDTO (id = null , title = " Content" ),
261256 FeedbackChannelRatingCategoryDTO (id = null , title = " Delivery" )
@@ -344,7 +339,6 @@ class FeedbackEndpointsTest {
344339 FeedbackChannelCreationDTO (
345340 title = " Microservices Patterns" ,
346341 speakers = listOf (" Charlie" ),
347- channelPrefix = " micro" ,
348342 ratingCategories = listOf (
349343 FeedbackChannelRatingCategoryDTO (id = null , title = " Depth" ),
350344 FeedbackChannelRatingCategoryDTO (id = null , title = " Clarity" ),
0 commit comments