diff --git a/test/test_deploy_templates.py b/test/test_deploy_templates.py index fa3874d0f..822be187e 100644 --- a/test/test_deploy_templates.py +++ b/test/test_deploy_templates.py @@ -6,11 +6,11 @@ from container_ci_suite.utils import check_variables if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") IMAGE_NAME = os.getenv("IMAGE_NAME") OS = os.getenv("TARGET") diff --git a/test/test_latest_imagestreams.py b/test/test_latest_imagestreams.py index e3a58b7da..70aa92acd 100644 --- a/test/test_latest_imagestreams.py +++ b/test/test_latest_imagestreams.py @@ -9,10 +9,10 @@ TEST_DIR = Path(os.path.abspath(os.path.dirname(__file__))) if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") # Replacement with 'test_latest_imagestreams' diff --git a/test/test_s2i_imagestreams.py b/test/test_s2i_imagestreams.py index 6f40c0914..6aa5544ea 100644 --- a/test/test_s2i_imagestreams.py +++ b/test/test_s2i_imagestreams.py @@ -6,11 +6,11 @@ if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") IMAGE_NAME = os.getenv("IMAGE_NAME") OS = os.getenv("OS") diff --git a/test/test_s2i_integration.py b/test/test_s2i_integration.py index 98b3bd7b9..ad2fa3c8a 100644 --- a/test/test_s2i_integration.py +++ b/test/test_s2i_integration.py @@ -5,11 +5,11 @@ from container_ci_suite.openshift import OpenShiftAPI if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") IMAGE_NAME = os.getenv("IMAGE_NAME") OS = os.getenv("TARGET")