From 9582f68769974662f600bd60754ff7135b97ae64 Mon Sep 17 00:00:00 2001 From: Sam Oehlert Date: Mon, 20 Jan 2025 13:16:04 -0600 Subject: [PATCH] test(plex-auth): update backend tests to match the new config file --- backend/tests/conftest.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/tests/conftest.py b/backend/tests/conftest.py index 0514e31..571df5c 100644 --- a/backend/tests/conftest.py +++ b/backend/tests/conftest.py @@ -6,8 +6,9 @@ from plexapi.audio import Track mock_env = { - "PLEX_BASE_URL": "http://fake-plex:32400", - "PLEX_TOKEN": "fake-token", + "PLEX_USERNAME": "testuser", + "PLEX_PASSWORD": "testpassword", + "PLEX_SERVER_NAME": "plexserver", "CLIENT_NAME": "test-client", "REDIS_URL": "redis://fake-redis:6379", "TUNEBOX_URL": "http://fake-tunebox:8000",