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

@@ -3,6 +3,7 @@ from django.test import Client
from django.urls import reverse
from bs4 import BeautifulSoup
@pytest.mark.django_db
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')
li_tags = soup.find_all('li')
assert len(li_tags) == 3