From 7631d95ffd5f45492779ddfd2ab26e11d81a774a Mon Sep 17 00:00:00 2001 From: Zhaolie Date: Tue, 7 Oct 2025 12:10:26 +0100 Subject: [PATCH] refactor: typo --- tests/unit/controllers/test_party_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)