diff --git a/test/acceptance/features/steps/openshift.py b/test/acceptance/features/steps/openshift.py index 9458c0f0e0..d0287ac655 100644 --- a/test/acceptance/features/steps/openshift.py +++ b/test/acceptance/features/steps/openshift.py @@ -552,7 +552,7 @@ def get_deployment_with_intermediate_secret_of_given_pattern(self, intermediate_ def new_app(self, name, image_name, namespace, bindingRoot=None, asDeploymentConfig=False): if ctx.cli == "oc": - cmd = f"{ctx.cli} new-app --docker-image={image_name} --name={name} -n {namespace}" + cmd = f"{ctx.cli} new-app --image={image_name} --name={name} -n {namespace}" if bindingRoot: cmd = cmd + f" -e SERVICE_BINDING_ROOT={bindingRoot}" if asDeploymentConfig: