From e3d2eb1af86bcc23163841ed78d8b2947fc6c6da Mon Sep 17 00:00:00 2001 From: Haelnorr Date: Sat, 1 Mar 2025 21:33:43 +1100 Subject: [PATCH] Fixed tmdb token not set causes tests to fail --- tests/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/config.go b/tests/config.go index 6b4ab4f..28f53d5 100644 --- a/tests/config.go +++ b/tests/config.go @@ -9,6 +9,7 @@ import ( func TestConfig() (*config.Config, error) { os.Setenv("SECRET_KEY", ".") + os.Setenv("TMDB_API_TOKEN", ".") cfg, err := config.GetConfig(map[string]string{}) if err != nil { return nil, errors.Wrap(err, "config.GetConfig")