Skip to content

Commit

Permalink
Change whip report tests
Browse files Browse the repository at this point in the history
Now title it always visible - just with different text beneath.
  • Loading branch information
ajparsons committed Dec 24, 2024
1 parent 63d25d2 commit 26d65f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_whip_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def whip_report():
def test_original_data(client: Client):
response = client.get("/decisions/division/commons/2016-12-13/109")
content = response.content.decode()
for text in ["Whip reports", "against", "three_line"]:
for text in ["against", "three_line"]:
assert text not in content


Expand All @@ -38,7 +38,7 @@ def test_original_data_json(client: Client):
content = response.content.decode()
response = client.get("/decisions/division/commons/2016-12-13/109")
content = response.content.decode()
for text in ["Whip reports", "against", "three_line"]:
for text in ["against", "three_line"]:
assert text not in content


Expand Down

0 comments on commit 26d65f7

Please sign in to comment.