test: update title provider stub signature

This commit is contained in:
2026-07-06 19:09:16 +02:00
parent 0e3d4b4b11
commit 610b5029a3

View File

@@ -25,7 +25,7 @@ func (p *titleProviderStub) ResolveEpisodeProviderID(context.Context, int, []str
return "80712", nil return "80712", nil
} }
func (p *titleProviderStub) GetEpisodeTitlesByProviderID(context.Context, string) (map[int]string, error) { func (p *titleProviderStub) GetEpisodeTitlesByProviderID(context.Context, string, domain.Anime, int) (map[int]string, error) {
p.loads++ p.loads++
return map[int]string{1: "TVmaze title one", 2: "TVmaze title two"}, nil return map[int]string{1: "TVmaze title one", 2: "TVmaze title two"}, nil
} }