diff --git a/pyproject.toml b/pyproject.toml index 58e07250072dde4ce9283b79623dc9615d92a905..68c5415925fe5665d446e32ab11267c1cfad6df0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "sunrise6g-opensdk" -version = "1.0.17" +version = "1.0.18" description = "Open source SDK to abstract CAMARA/GSMA Transformation Functions (TFs) for Edge Cloud platforms, 5G network cores and Open RAN solutions." keywords = [ "Federation", diff --git a/tests/edgecloud/test_e2e_gsma.py b/tests/edgecloud/test_e2e_gsma.py index 903fe21b8ed990e9884b2776f31369ff55cbf0bc..59df8bebba0d7f2bf438ec9d33e2726f5a163981 100644 --- a/tests/edgecloud/test_e2e_gsma.py +++ b/tests/edgecloud/test_e2e_gsma.py @@ -225,7 +225,7 @@ def test_onboard_app_gsma(edgecloud_client): try: response = edgecloud_client.onboard_app_gsma(config["APP_ONBOARD_MANIFEST_GSMA"]) assert isinstance(response, Response) - assert response.status_code == 201 + assert response.status_code == 200 except EdgeCloudPlatformError as e: pytest.fail(f"App onboarding failed: {e}") @@ -307,7 +307,7 @@ def test_get_all_deployed_apps_gsma(edgecloud_client): validated_instances = [] for instance_data in instances_data: - validated_instance = gsma_schemas.AppInstance(**instance_data) + validated_instance = gsma_schemas.ZoneIdentifier(**instance_data) validated_instances.append(validated_instance) except EdgeCloudPlatformError as e: @@ -373,7 +373,7 @@ def test_delete_onboarded_app_gsma(edgecloud_client): app_id = config["APP_ONBOARD_MANIFEST_GSMA"]["appId"] response = edgecloud_client.delete_onboarded_app_gsma(app_id) assert isinstance(response, Response) - assert response.status_code == 204 + assert response.status_code == 200 except EdgeCloudPlatformError as e: pytest.fail(f"App onboarding deletion failed: {e}")