Skip to content

Commit f44fd8d

Browse files
committed
fixes tests
1 parent 7530faa commit f44fd8d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/pytest-simcore/src/pytest_simcore/helpers/catalog_rpc_server.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121

2222
class CatalogRpcSideEffects:
23+
# pylint: disable=no-self-use
2324
async def list_services_paginated(
2425
self,
2526
rpc_client: RabbitMQRPCClient,
@@ -104,9 +105,7 @@ async def list_my_service_history_paginated(
104105
assert service_key
105106

106107
items = TypeAdapter(list[ServiceRelease]).validate_python(
107-
[
108-
ServiceRelease.model_json_schema()["example"],
109-
]
108+
ServiceRelease.model_json_schema()["examples"],
110109
)
111110
total_count = len(items)
112111

0 commit comments

Comments
 (0)