Skip to content

Commit 5acbe1f

Browse files
authored
Merge pull request #596 from mbaldessari/fix_tests_new_ns
Fix tests for new namespace
2 parents 1796f1f + bc8b53e commit 5acbe1f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/interop/test_validate_edge_site_components.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_check_pod_status(openshift_dyn_client):
4646
projects = [
4747
"open-cluster-management-agent",
4848
"open-cluster-management-agent-addon",
49-
"openshift-gitops",
49+
"vp-gitops",
5050
]
5151
err_msg = components.check_pod_status(openshift_dyn_client, projects)
5252
if err_msg:
@@ -59,7 +59,7 @@ def test_check_pod_status(openshift_dyn_client):
5959
@pytest.mark.validate_argocd_applications_health_edge_site
6060
def test_validate_argocd_applications_health_edge_site(openshift_dyn_client):
6161
logger.info("Get all applications deployed by argocd on edge site")
62-
projects = ["openshift-gitops", "multicloud-gitops-group-one"]
62+
projects = ["vp-gitops", "multicloud-gitops-group-one"]
6363
unhealthy_apps = application.get_argocd_application_status(
6464
openshift_dyn_client, projects
6565
)

tests/interop/test_validate_hub_site_components.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_check_pod_status(openshift_dyn_client):
4444
"patterns-operator",
4545
"open-cluster-management",
4646
"open-cluster-management-hub",
47-
"openshift-gitops",
47+
"vp-gitops",
4848
"vault",
4949
]
5050
err_msg = components.check_pod_status(openshift_dyn_client, projects)
@@ -85,7 +85,7 @@ def test_validate_argocd_reachable_hub_site(openshift_dyn_client):
8585
@pytest.mark.validate_argocd_applications_health_hub_site
8686
def test_validate_argocd_applications_health_hub_site(openshift_dyn_client):
8787
logger.info("Get all applications deployed by argocd on hub site")
88-
projects = ["openshift-gitops", "multicloud-gitops-hub"]
88+
projects = ["vp-gitops", "multicloud-gitops-hub"]
8989
unhealthy_apps = application.get_argocd_application_status(
9090
openshift_dyn_client, projects
9191
)

0 commit comments

Comments
 (0)