Skip to content

Commit

Permalink
fix flake 8
Browse files Browse the repository at this point in the history
  • Loading branch information
BibianaC committed Nov 14, 2024
1 parent 7a55251 commit 4b2f5cc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion guidance_and_support/tests/test_zendesk.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ def test_generate_ticket(user):
ticket = generate_ticket(user['request'], user['form'], score=user['score'])
assert ticket == user['expected_output']


@pytest.mark.django_db
def test_generate_ticket_with_referer_path_false():
"""
Expand All @@ -70,6 +71,7 @@ def test_generate_ticket_with_referer_path_false():
)
assert ticket == LEGITIMATE_USER['expected_output']


@pytest.mark.django_db
def test_generate_ticket_with_referer_path_true():
"""
Expand All @@ -86,4 +88,4 @@ def test_generate_ticket_with_referer_path_true():
LEGITIMATE_USER['form'],
score=LEGITIMATE_USER['score']
)
assert ticket == LEGITIMATE_USER['expected_output']
assert ticket == LEGITIMATE_USER['expected_output']

0 comments on commit 4b2f5cc

Please sign in to comment.