Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/unit/controllers/test_party_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down