Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
CamLamb committed Sep 13, 2023
1 parent 54c93ed commit 2f3d726
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/peoplefinder/test/views/test_profile_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def test_profile_edit_contact_view(state):
response = state.client.get(view_url)

assert response.status_code == 200
assert state.person.contact_email is "jane.smith@test.com"
assert state.person.contact_email == "jane.smith@test.com"
assert state.person.primary_phone_number is None
assert state.person.secondary_phone_number is None

Expand Down Expand Up @@ -464,7 +464,7 @@ def test_profile_edit_teams_view(state):
assert response.status_code == 200
assert state.person.grade is None
assert state.person.manager is None
assert state.person.do_not_work_for_dit is None
assert state.person.do_not_work_for_dit is False

grade = Grade.objects.all().first()

Expand Down

0 comments on commit 2f3d726

Please sign in to comment.