@@ -63,7 +63,7 @@ async def test_list_solvers(
6363
6464
6565async def test_list_solver_ports (
66- mocked_rpc_catalog_service_api : dict ,
66+ mocked_catalog_rpc_api : dict ,
6767 client : httpx .AsyncClient ,
6868 auth : httpx .BasicAuth ,
6969):
@@ -102,7 +102,7 @@ async def test_list_solver_ports(
102102
103103async def test_list_solvers_with_mocked_catalog (
104104 client : httpx .AsyncClient ,
105- mocked_rpc_catalog_service_api : dict ,
105+ mocked_catalog_rpc_api : dict ,
106106 auth : httpx .BasicAuth ,
107107):
108108 response = await client .get (f"/{ API_VTAG } /solvers" , auth = auth )
@@ -111,7 +111,7 @@ async def test_list_solvers_with_mocked_catalog(
111111
112112async def test_list_releases_with_mocked_catalog (
113113 client : httpx .AsyncClient ,
114- mocked_rpc_catalog_service_api : dict ,
114+ mocked_catalog_rpc_api : dict ,
115115 auth : httpx .BasicAuth ,
116116):
117117 response = await client .get (f"/{ API_VTAG } /solvers/releases" , auth = auth )
@@ -120,7 +120,7 @@ async def test_list_releases_with_mocked_catalog(
120120
121121async def test_list_solver_page_with_mocked_catalog (
122122 client : httpx .AsyncClient ,
123- mocked_rpc_catalog_service_api : dict ,
123+ mocked_catalog_rpc_api : dict ,
124124 auth : httpx .BasicAuth ,
125125):
126126 response = await client .get (f"/{ API_VTAG } /solvers/page" , auth = auth )
@@ -130,7 +130,7 @@ async def test_list_solver_page_with_mocked_catalog(
130130
131131async def test_list_solver_releases_page_with_mocked_catalog (
132132 client : httpx .AsyncClient ,
133- mocked_rpc_catalog_service_api : dict ,
133+ mocked_catalog_rpc_api : dict ,
134134 auth : httpx .BasicAuth ,
135135):
136136 solver_key = "simcore/services/comp/itis/sleeper"
@@ -143,7 +143,7 @@ async def test_list_solver_releases_page_with_mocked_catalog(
143143
144144async def test_list_solver_releases_with_mocked_catalog (
145145 client : httpx .AsyncClient ,
146- mocked_rpc_catalog_service_api : dict ,
146+ mocked_catalog_rpc_api : dict ,
147147 auth : httpx .BasicAuth ,
148148):
149149 solver_key = "simcore/services/comp/itis/sleeper"
@@ -153,7 +153,7 @@ async def test_list_solver_releases_with_mocked_catalog(
153153
154154async def test_list_solver_ports_with_mocked_catalog (
155155 client : httpx .AsyncClient ,
156- mocked_rpc_catalog_service_api : dict ,
156+ mocked_catalog_rpc_api : dict ,
157157 auth : httpx .BasicAuth ,
158158):
159159 solver_key = "simcore/services/comp/itis/sleeper"
0 commit comments