diff --git a/crowdin_api/api_resources/translation_status/resource.py b/crowdin_api/api_resources/translation_status/resource.py index afc36f1..e438324 100644 --- a/crowdin_api/api_resources/translation_status/resource.py +++ b/crowdin_api/api_resources/translation_status/resource.py @@ -161,6 +161,6 @@ def list_qa_check_issues( return self._get_entire_data( method="get", - path=f"projects/{projectId}/languages/progress", + path=f"projects/{projectId}/qa-checks", params=params, ) diff --git a/crowdin_api/api_resources/translation_status/tests/test_translation_status_resources.py b/crowdin_api/api_resources/translation_status/tests/test_translation_status_resources.py index 83dcab0..0f74c13 100644 --- a/crowdin_api/api_resources/translation_status/tests/test_translation_status_resources.py +++ b/crowdin_api/api_resources/translation_status/tests/test_translation_status_resources.py @@ -121,5 +121,5 @@ def test_list_qa_check_issues(self, m_request, in_params, request_params, base_a resource = self.get_resource(base_absolut_url) assert resource.list_qa_check_issues(projectId=1, **in_params) == "response" m_request.assert_called_once_with( - method="get", path="projects/1/languages/progress", params=request_params + method="get", path="projects/1/qa-checks", params=request_params )