Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nmenezes0 committed Jan 6, 2025
1 parent da8bd53 commit 279203b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/unit/test_delete_consultation.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

from consultation_analyser.consultations import models
from consultation_analyser import factories
from consultation_analyser.consultations import models


@pytest.mark.django_db
Expand All @@ -12,7 +12,6 @@ def test_delete_consultation():
respondent = factories.RespondentFactory(consultation=consultation)
factories.AnswerFactory(question_part=question_part, respondent=respondent)


assert models.Consultation.objects.count() == 1
assert models.Respondent.objects.count() >= 1
assert models.Question.objects.count() >= 1
Expand All @@ -25,4 +24,3 @@ def test_delete_consultation():
assert models.Respondent.objects.count() == 0
assert models.QuestionPart.objects.count() == 0
assert models.Answer.objects.count() == 0

0 comments on commit 279203b

Please sign in to comment.