From 108743daa5719c3f8c3848bdb45569a5acbc3d1a Mon Sep 17 00:00:00 2001 From: kitos Date: Fri, 3 Jul 2026 14:12:30 +0200 Subject: [PATCH] docs(campaigns): remove stale docstring reference to deleted scheduling filter --- backend/app/services/test_crud_service.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/backend/app/services/test_crud_service.py b/backend/app/services/test_crud_service.py index c7aba76..2d4688e 100644 --- a/backend/app/services/test_crud_service.py +++ b/backend/app/services/test_crud_service.py @@ -47,12 +47,7 @@ def list_tests( # Entry: limit limit: int = 50, ) -> list[Test]: - """Return a paginated list of tests with optional filters. - - Tests that belong to a campaign still in 'draft' status AND with a - start_date in the future are always excluded — they should not appear - in the team's queue until the campaign is activated on its start date. - """ + """Return a paginated list of tests with optional filters.""" query = db.query(Test).options(joinedload(Test.technique)) # Check: state