From 352aa9b27d17d25f9aa6d67ddb4bec03503ae326 Mon Sep 17 00:00:00 2001 From: Aleksander Petrushkin Date: Sun, 17 Sep 2023 12:23:36 +0300 Subject: [PATCH] Fix missing call (#72) Co-authored-by: aapetrushkin --- tests/test_server/test_urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_server/test_urls.py b/tests/test_server/test_urls.py index 6b59b382..81dc371b 100644 --- a/tests/test_server/test_urls.py +++ b/tests/test_server/test_urls.py @@ -4,7 +4,7 @@ from django.test import Client -@pytest.mark.django_db()() +@pytest.mark.django_db() def test_health_check(client: Client) -> None: """This test ensures that health check is accessible.""" response = client.get('/health/')