From bb1a5db2066673cad771fbcbddda216c7c84bc58 Mon Sep 17 00:00:00 2001 From: alz Date: Thu, 30 Nov 2023 10:23:23 +0300 Subject: [PATCH] Fix test_042 for Aborted status --- tests/e2e/test_operator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/test_operator.py b/tests/e2e/test_operator.py index 88d410f3f..ea2d13f4e 100644 --- a/tests/e2e/test_operator.py +++ b/tests/e2e/test_operator.py @@ -3944,7 +3944,7 @@ def test_042(self): ) with Then("Operator should apply changes, and both pods should be created"): - kubectl.wait_chi_status(chi, "Completed", retries=20) + kubectl.wait_chi_status(chi, "Aborted", retries=20) kubectl.wait_objects(chi, {"statefulset": 2, "pod": 2, "service": 3}) with And("First node is in CrashLoopBackOff"): @@ -3973,7 +3973,7 @@ def test_042(self): ) with Then("Operator should apply changes, and both pods should be created"): - kubectl.wait_chi_status(chi, "Completed", retries=20) + kubectl.wait_chi_status(chi, "Aborted", retries=20) kubectl.wait_objects(chi, {"statefulset": 2, "pod": 2, "service": 3}) with And("First node is in CrashLoopBackOff"):