fix linting

This commit is contained in:
2025-09-10 12:33:33 +02:00
parent f5c04f9d58
commit f425673953
6 changed files with 29 additions and 30 deletions

View File

@@ -12,6 +12,5 @@ def test_str_profile():
profile = Profile.objects.create( profile = Profile.objects.create(
user=user, user=user,
favorite_city="Paris", favorite_city="Paris",
) )
assert str(profile) == "TestUser" assert str(profile) == "TestUser"

View File

@@ -11,6 +11,7 @@ def test_should_get_200_on_profile_index():
response = c.get(url) response = c.get(url)
assert response.status_code == 200 assert response.status_code == 200
@pytest.mark.django_db @pytest.mark.django_db
def test_should_get_200_on_profile_detail(sample_profile): def test_should_get_200_on_profile_detail(sample_profile):
""" test the server's response on a profile detail page """ """ test the server's response on a profile detail page """
@@ -18,4 +19,3 @@ def test_should_get_200_on_profile_detail(sample_profile):
url = reverse('profile', kwargs={'username': "TestUser"}) url = reverse('profile', kwargs={'username': "TestUser"})
response = c.get(url) response = c.get(url)
assert response.status_code == 200 assert response.status_code == 200

View File

@@ -3,6 +3,7 @@ from django.test import Client
from django.urls import reverse from django.urls import reverse
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
@pytest.mark.django_db @pytest.mark.django_db
def test_view_should_display_right_len_list(sample_profile): def test_view_should_display_right_len_list(sample_profile):
""" """
@@ -15,4 +16,3 @@ def test_view_should_display_right_len_list(sample_profile):
soup = BeautifulSoup(response.content, 'html.parser') soup = BeautifulSoup(response.content, 'html.parser')
li_tags = soup.find_all('li') li_tags = soup.find_all('li')
assert len(li_tags) == 3 assert len(li_tags) == 3