Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kaenganxt committed Feb 11, 2024
1 parent 7868f32 commit 9cc22b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lib/vvvote/test_election_config.py
Expand Up @@ -37,6 +37,6 @@ def test_voting_phase_to_vvvote_election_config(db_session, ballot_factory, prop
assert len(config.questions[1].options) == 3
assert len(config.questions[2].options) == 5
assert config.authData.VotingStart == target - timedelta(days=4)
assert config.authData.VotingEnd == target
assert config.authData.VotingEnd == target - timedelta(seconds=1)
assert config.authData.RegistrationStartDate == target - timedelta(days=8)
assert config.authData.RegistrationEndDate == target - timedelta(days=4)
assert config.authData.RegistrationEndDate == target - timedelta(days=4) - timedelta(seconds=1)

0 comments on commit 9cc22b3

Please sign in to comment.