From 212cbbd3a2b4ac06dab333f7e1c5b2af40cb499b Mon Sep 17 00:00:00 2001 From: QTom Date: Sat, 28 Feb 2026 21:30:59 +0800 Subject: [PATCH] fix: add missing rpmCache nil arg in sora_client_handler_test --- backend/internal/handler/sora_client_handler_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/internal/handler/sora_client_handler_test.go b/backend/internal/handler/sora_client_handler_test.go index a639e504..0b80a9cc 100644 --- a/backend/internal/handler/sora_client_handler_test.go +++ b/backend/internal/handler/sora_client_handler_test.go @@ -2181,7 +2181,7 @@ func (s *stubSoraClientForHandler) GetVideoTask(_ context.Context, _ *service.Ac func newMinimalGatewayService(accountRepo service.AccountRepository) *service.GatewayService { return service.NewGatewayService( accountRepo, nil, nil, nil, nil, nil, nil, nil, - nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, + nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, ) }