Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
zganger committed Mar 27, 2024
1 parent c1364ee commit 7a55119
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions backend/tests/test_incidents.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def test_search_incidents(self, client, example_incidents, access_token):
)
self.assertEqual(res.status_code, 200)

# Match the results to the known dataset and assert that all the expected
# results are present
# Match the results to the known dataset and assert that all
# the expected results are present
actual_incidents = res.json["results"]

def incident_name(incident):
Expand Down
4 changes: 2 additions & 2 deletions backend/tests/test_officers.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@ def test_search_officers(self, client, example_officers, access_token):
)
self.assertEqual(res.status_code, 200)
# Match the results to the known dataset and assert that all the expected
# results are present
# Match the results to the known dataset and assert that
# all the expected results are present
actual_officers = res.json["results"]
def officer_name(officer):
Expand Down

0 comments on commit 7a55119

Please sign in to comment.