File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
services/catalog/tests/unit/with_dbs Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1212from fastapi import FastAPI
1313from models_library .api_schemas_catalog .services import MyServiceGet , ServiceSummary
1414from models_library .products import ProductName
15- from models_library .services_base import ServiceKeyVersion
1615from models_library .users import UserID
1716from pydantic import TypeAdapter , ValidationError
1817from pytest_simcore .helpers .catalog_services import CreateFakeServiceDataCallable
@@ -341,8 +340,8 @@ async def test_batch_get_my_services_partial_success(
341340
342341 # Check missing services
343342 expected_missing = [
344- ServiceKeyVersion ( key = "simcore/services/comp/missing-service" , version = "2.0.0" ),
345- ServiceKeyVersion ( key = "simcore/services/comp/another-missing" , version = "3.0.0" ),
343+ ( "simcore/services/comp/missing-service" , "2.0.0" ),
344+ ( "simcore/services/comp/another-missing" , "3.0.0" ),
346345 ]
347346 assert result .missing_identifiers == expected_missing
348347
You can’t perform that action at this time.
0 commit comments