From 7a551190565a1e635fd49403271264dd752f10cd Mon Sep 17 00:00:00 2001 From: Zack Ganger Date: Tue, 26 Mar 2024 21:27:46 -0400 Subject: [PATCH] flake8 --- backend/tests/test_incidents.py | 4 ++-- backend/tests/test_officers.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/tests/test_incidents.py b/backend/tests/test_incidents.py index 66545150e..6641cbe16 100644 --- a/backend/tests/test_incidents.py +++ b/backend/tests/test_incidents.py @@ -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): diff --git a/backend/tests/test_officers.py b/backend/tests/test_officers.py index c7d08be78..ff1c6e67c 100644 --- a/backend/tests/test_officers.py +++ b/backend/tests/test_officers.py @@ -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):