diff --git a/tests/unit/controllers/test_party_controller.py b/tests/unit/controllers/test_party_controller.py index feaa1e699..938eeeeb8 100644 --- a/tests/unit/controllers/test_party_controller.py +++ b/tests/unit/controllers/test_party_controller.py @@ -186,7 +186,7 @@ def test_get_party_by_business_id_success_without_collection_exercise_id(self): self.assertEqual(business["name"], business_party["name"]) def test_get_party_by_business_id_success_with_collection_exercise_id(self): - """Tests the function is successful when we supply the optional collection_excercise_id""" + """Tests the function is successful when we supply the optional collection_exercise_id""" with responses.RequestsMock() as rsps: url = f"{url_get_business_party}?collection_exercise_id={collection_exercise['id']}&verbose=True" rsps.add(rsps.GET, url, json=business_party, status=200)