Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always record when objects are seen in scrapes #342

Merged
merged 14 commits into from
Jan 10, 2023
Prev Previous commit
Next Next commit
Order test queryset properly
  • Loading branch information
msj committed Jan 5, 2023
commit 8b6355e8cc4353526e50316feb7429c55eb5833e
2 changes: 1 addition & 1 deletion pupa/tests/importers/test_vote_event_importer.py
Original file line number Diff line number Diff line change
@@ -546,7 +546,7 @@ def test_vote_event_bill_actions_errors():
)

bill = Bill.objects.get()
votes = list(VoteEvent.objects.all())
votes = list(VoteEvent.objects.all().order_by("identifier"))

# isn't matched, was ambiguous across two actions
assert votes[0].bill_action is None