fix: Update test fixtures to use correct service method names

- Fixed test_download_progress_websocket: stop() -> stop_downloads()
- Fixed test_download_service: start() -> initialize(), stop() -> stop_downloads()
- Resolved 8 test errors and 3 test failures
- Test status: 970 passing, 31 failing (down from 967 passing, 34 failing, 8 errors)
- All 104 NFO-related tests still passing (100%)
This commit is contained in:
2026-01-15 19:43:58 +01:00
parent a1865a41c6
commit 9078a6f3dc
3 changed files with 10 additions and 13 deletions

View File

@@ -115,7 +115,7 @@ async def download_service(anime_service, progress_service):
yield service, progress_service
await service.stop()
await service.stop_downloads()
class TestDownloadProgressWebSocket: