From 616e6953ccc2ce417986c8959dadc54a9dbad1dc Mon Sep 17 00:00:00 2001 From: skynono Date: Tue, 17 Jun 2025 15:35:40 +0800 Subject: [PATCH] feat: add unsupported test case for kling channel --- controller/channel-test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/controller/channel-test.go b/controller/channel-test.go index d162d8cf..c7e53c13 100644 --- a/controller/channel-test.go +++ b/controller/channel-test.go @@ -40,6 +40,9 @@ func testChannel(channel *model.Channel, testModel string) (err error, openAIErr if channel.Type == common.ChannelTypeSunoAPI { return errors.New("suno channel test is not supported"), nil } + if channel.Type == common.ChannelTypeKling { + return errors.New("kling channel test is not supported"), nil + } w := httptest.NewRecorder() c, _ := gin.CreateTestContext(w)