@@ -48,7 +48,7 @@ class TestProgressProfileResponse:
4848 Тесты пути: `/progress/profile/`
4949 """
5050
51- POINTS_IN_PROFILE : int = 5
51+ POINTS_IN_PROFILE : int = 20
5252 SKILL_PERCENT_DONE : int = 13
5353
5454 def test_progress_profile_new_sub_full_data (self , api_auth_with_sub_client : APIClient ):
@@ -131,7 +131,7 @@ class TestUserScoreRating:
131131 Тесты пути: `/progress/user-rating/?time_frame=...`
132132 """
133133
134- SINGLE_SCORE_COUNT = 5
134+ SINGLE_SCORE_COUNT = 20
135135
136136 @pytest .mark .parametrize ("time_frame" , ("last_day" , "last_month" , "last_year" ))
137137 def test_empty_data_without_answers (self , time_frame : str , api_auth_with_sub_client : APIClient ):
@@ -169,7 +169,11 @@ def test_free_single_answer_by_new_sub(self, time_frame: str, api_auth_with_sub_
169169 def test_user_rating_with_different_roles (self , time_frame : str , api_auth_with_sub_client : APIClient ):
170170 """Все ответы даны в 1 время, таймлайн не решает, рейтинг по дате должен быть одинаковым."""
171171 response = api_auth_with_sub_client .get (constants .USER_SCORE_RATING_PATH + f"?time_frame={ time_frame } " )
172+ print ("1" * 100 )
173+ print (response )
172174 response_dct = response .json ()
175+ print ("1" * 100 )
176+ print (response_dct )
173177 assert (
174178 response_dct ["count" ] == 1
175179 ), "В рейтинге должeн быть 1 пользователь (Стафф и админ не должны отображаться)"
0 commit comments