diff --git a/tests/interop/test_validate_edge_site_components.py b/tests/interop/test_validate_edge_site_components.py index 9d3ff736f..603838133 100644 --- a/tests/interop/test_validate_edge_site_components.py +++ b/tests/interop/test_validate_edge_site_components.py @@ -46,7 +46,7 @@ def test_check_pod_status(openshift_dyn_client): projects = [ "open-cluster-management-agent", "open-cluster-management-agent-addon", - "openshift-gitops", + "vp-gitops", ] err_msg = components.check_pod_status(openshift_dyn_client, projects) if err_msg: @@ -59,7 +59,7 @@ def test_check_pod_status(openshift_dyn_client): @pytest.mark.validate_argocd_applications_health_edge_site def test_validate_argocd_applications_health_edge_site(openshift_dyn_client): logger.info("Get all applications deployed by argocd on edge site") - projects = ["openshift-gitops", "multicloud-gitops-group-one"] + projects = ["vp-gitops", "multicloud-gitops-group-one"] unhealthy_apps = application.get_argocd_application_status( openshift_dyn_client, projects ) diff --git a/tests/interop/test_validate_hub_site_components.py b/tests/interop/test_validate_hub_site_components.py index 9cdecb3dc..ae0381750 100644 --- a/tests/interop/test_validate_hub_site_components.py +++ b/tests/interop/test_validate_hub_site_components.py @@ -44,7 +44,7 @@ def test_check_pod_status(openshift_dyn_client): "patterns-operator", "open-cluster-management", "open-cluster-management-hub", - "openshift-gitops", + "vp-gitops", "vault", ] err_msg = components.check_pod_status(openshift_dyn_client, projects) @@ -85,7 +85,7 @@ def test_validate_argocd_reachable_hub_site(openshift_dyn_client): @pytest.mark.validate_argocd_applications_health_hub_site def test_validate_argocd_applications_health_hub_site(openshift_dyn_client): logger.info("Get all applications deployed by argocd on hub site") - projects = ["openshift-gitops", "multicloud-gitops-hub"] + projects = ["vp-gitops", "multicloud-gitops-hub"] unhealthy_apps = application.get_argocd_application_status( openshift_dyn_client, projects )