diff --git a/test/test_redis_imagestream.py b/test/test_redis_imagestream.py index 66f5124..b2d34b1 100644 --- a/test/test_redis_imagestream.py +++ b/test/test_redis_imagestream.py @@ -7,11 +7,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") TAGS = { diff --git a/test/test_redis_imagestream_template.py b/test/test_redis_imagestream_template.py index 6782545..606ddb8 100644 --- a/test/test_redis_imagestream_template.py +++ b/test/test_redis_imagestream_template.py @@ -7,11 +7,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") TAGS = { diff --git a/test/test_redis_latest_imagestreams.py b/test/test_redis_latest_imagestreams.py index a8140cf..f01d442 100644 --- a/test/test_redis_latest_imagestreams.py +++ b/test/test_redis_latest_imagestreams.py @@ -11,7 +11,7 @@ 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) diff --git a/test/test_redis_template.py b/test/test_redis_template.py index e27ca06..109a864 100644 --- a/test/test_redis_template.py +++ b/test/test_redis_template.py @@ -7,11 +7,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")