diff --git a/tests/integration/test_totals_projects.py b/tests/integration/test_totals_projects.py index 6b46983b..eb4b2803 100644 --- a/tests/integration/test_totals_projects.py +++ b/tests/integration/test_totals_projects.py @@ -146,7 +146,6 @@ def test_project_totals_updated_on_like(client): client.login(project.owner) url_like = reverse("projects-like", args=(project.id,)) response = client.post(url_like) - print(response.data) project = Project.objects.get(id=project.id) assert project.total_fans == 4 diff --git a/tests/integration/test_users.py b/tests/integration/test_users.py index 0761b3bf..a2dd0f3f 100644 --- a/tests/integration/test_users.py +++ b/tests/integration/test_users.py @@ -227,8 +227,6 @@ def test_change_avatar_with_long_file_name(client): post_data = {'avatar': avatar} response = client.post(url, post_data) - print(response.data) - assert response.status_code == 200