From e181c993d622509df77f07e28dd504ed8c306f47 Mon Sep 17 00:00:00 2001 From: YehorI Date: Thu, 23 Nov 2023 16:10:25 +0300 Subject: [PATCH] task/182 test fix 2 --- tests/projects/database/test_projects_database_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/projects/database/test_projects_database_service.py b/tests/projects/database/test_projects_database_service.py index 9c11651a..290c4e13 100644 --- a/tests/projects/database/test_projects_database_service.py +++ b/tests/projects/database/test_projects_database_service.py @@ -333,7 +333,7 @@ async def test_get_participants_with_all_filters( .where( Participant.user_id == user_id, Participant.position_id == position_id, - Participant.project_id.in_( + Participant.position_id.in_( select(Position.id).where(Position.project_id == project.id) ), Participant.status == status,