Skip to content
This repository has been archived by the owner on Jun 1, 2022. It is now read-only.

Commit

Permalink
flake8 fix, refs #650
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jun 22, 2021
1 parent e1bc314 commit 03d77ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vaccinate/api/caller_views/test_submit_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def test_submit_report_updates_location_fields(location, client, jwt_id_token):
assert not report.soft_deleted
# Should have updated fields on location:
assert location2.vaccines_offered == ["Moderna", "Johnson & Johnson", "Other"]
assert location2.accepts_appointments == True
assert location2.accepts_walkins == False
assert location2.accepts_appointments is True
assert location2.accepts_walkins is False
assert location2.vaccines_offered_provenance_report == report
assert location2.appointments_walkins_provenance_report == report

0 comments on commit 03d77ee

Please sign in to comment.