Update tests

This commit is contained in:
Alex Root Junior 2020-01-25 18:26:30 +02:00
parent e80ab3d3c0
commit 4caa8faab8
6 changed files with 59 additions and 2 deletions

View file

@ -263,6 +263,11 @@ class TestRouter:
PollOption(text="A2", voter_count=3),
],
is_closed=False,
is_anonymous=False,
type="quiz",
allows_multiple_answers=False,
total_voter_count=0,
correct_option_id=1,
),
),
False,
@ -319,6 +324,11 @@ class TestRouter:
PollOption(text="A2", voter_count=3),
],
is_closed=False,
is_anonymous=False,
type="quiz",
allows_multiple_answers=False,
total_voter_count=0,
correct_option_id=0,
),
)
)