Skip to content

Commit e67fd5c

Browse files
committed
Fix interop tests
1 parent 8a2e911 commit e67fd5c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

tests/interop/test_validate_hub_site_components.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,15 @@ def test_check_pod_status(openshift_dyn_client):
4646
projects = ["redhat-ods-applications"]
4747
err_msg = components.check_pod_status(openshift_dyn_client, projects)
4848
if err_msg:
49-
logger.error(f"FAIL: {err_msg}")
50-
assert False, err_msg
49+
assert False, "FAIL: One or more pods are failing."
5150
else:
5251
logger.info("PASS: Pod status check succeeded.")
5352

5453

5554
@pytest.mark.check_pod_count_hub
5655
def test_check_pod_count_hub(openshift_dyn_client):
5756
logger.info("Checking pod count")
58-
projects = {"redhat-ods-applications": 13}
57+
projects = {"redhat-ods-applications": 10}
5958

6059
failed = []
6160
for key in projects.keys():

0 commit comments

Comments
 (0)