@@ -214,14 +214,14 @@ def mock_create(
214
214
ServiceTestHelpers .mock_create (self .mock_catalogue_category_repository , self ._expected_catalogue_category_out )
215
215
216
216
def call_create (self ) -> None :
217
- """Calls the CatalogueCategoryService `create` method with the appropriate data from a prior call to
217
+ """Calls the ` CatalogueCategoryService` `create` method with the appropriate data from a prior call to
218
218
`mock_create`."""
219
219
220
220
self ._created_catalogue_category = self .catalogue_category_service .create (self ._catalogue_category_post )
221
221
222
222
def call_create_expecting_error (self , error_type : type [BaseException ]) -> None :
223
223
"""
224
- Calls the CatalogueCategoryService `create` method with the appropriate data from a prior call to
224
+ Calls the ` CatalogueCategoryService` `create` method with the appropriate data from a prior call to
225
225
`mock_create` while expecting an error to be raised.
226
226
227
227
:param error_type: Expected exception to be raised.
@@ -358,7 +358,7 @@ def mock_get(self) -> None:
358
358
359
359
def call_get (self , catalogue_category_id : str ) -> None :
360
360
"""
361
- Calls the CatalogueCategoryService `get` method.
361
+ Calls the ` CatalogueCategoryService` `get` method.
362
362
363
363
:param catalogue_category_id: ID of the catalogue category to be obtained.
364
364
"""
@@ -444,7 +444,7 @@ def mock_list(self) -> None:
444
444
445
445
def call_list (self , parent_id : Optional [str ]) -> None :
446
446
"""
447
- Calls the CatalogueCategoryService `list` method.
447
+ Calls the ` CatalogueCategoryService` `list` method.
448
448
449
449
:param parent_id: ID of the parent catalogue category to query by, or `None`.
450
450
"""
@@ -842,7 +842,7 @@ class DeleteDSL(CatalogueCategoryServiceDSL):
842
842
843
843
def call_delete (self , catalogue_category_id : str ) -> None :
844
844
"""
845
- Calls the CatalogueCategoryService `delete` method.
845
+ Calls the ` CatalogueCategoryService` `delete` method.
846
846
847
847
:param catalogue_category_id: ID of the catalogue category to be deleted.
848
848
"""
0 commit comments