Fix tests

This commit is contained in:
2024-12-11 22:37:26 +01:00
parent d12dd7678b
commit b0966e7664
7 changed files with 3 additions and 144 deletions

View File

@ -16,7 +16,7 @@ if TYPE_CHECKING:
@pytest.mark.django_db
def test_index_view(client: Client) -> None:
"""Test index view."""
url: str = reverse(viewname="core:index")
url: str = reverse(viewname="index")
response: _MonkeyPatchedWSGIResponse = client.get(url)
assert isinstance(response, HttpResponse)