File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/pytest-simcore/src/pytest_simcore/helpers
services/api-server/tests/unit Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ async def update_service(
111111 return got .model_copy (update = update .model_dump (exclude_unset = True ))
112112
113113 @validate_call (config = {"arbitrary_types_allowed" : True })
114- async def list_my_service_history_paginated (
114+ async def list_my_service_history_sorted (
115115 self ,
116116 rpc_client : RabbitMQRPCClient | MockType ,
117117 * ,
Original file line number Diff line number Diff line change @@ -490,11 +490,11 @@ def get_mock_rabbitmq_rpc_client():
490490 autospec = True ,
491491 side_effect = side_effects .update_service ,
492492 ),
493- "list_my_service_history_paginated " : mocker .patch .object (
493+ "list_my_service_history_sorted " : mocker .patch .object (
494494 catalog_rpc ,
495- "list_my_service_history_paginated " ,
495+ "list_my_service_history_sorted " ,
496496 autospec = True ,
497- side_effect = side_effects .list_my_service_history_paginated ,
497+ side_effect = side_effects .list_my_service_history_sorted ,
498498 ),
499499 "get_service_ports" : mocker .patch .object (
500500 catalog_rpc ,
You can’t perform that action at this time.
0 commit comments