From 887813b694d4fb5abaa2e2180cd75e0b79c27704 Mon Sep 17 00:00:00 2001 From: Nitin Goyal Date: Tue, 20 Aug 2019 17:41:21 +0530 Subject: Remove extra '-' from create_secret Change-Id: I2ebc1c2e7e7aefb5e0d70342a7ec243a12b0663b --- openshift-storage-libs/openshiftstoragelibs/baseclass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openshift-storage-libs/openshiftstoragelibs/baseclass.py') diff --git a/openshift-storage-libs/openshiftstoragelibs/baseclass.py b/openshift-storage-libs/openshiftstoragelibs/baseclass.py index 956cf568..e55ef84c 100644 --- a/openshift-storage-libs/openshiftstoragelibs/baseclass.py +++ b/openshift-storage-libs/openshiftstoragelibs/baseclass.py @@ -136,7 +136,7 @@ class BaseClass(unittest.TestCase): return command.cmd_run( cmd=cmd, hostname=hostname, raise_on_error=raise_on_error) - def create_secret(self, secret_name_prefix="autotests-secret-"): + def create_secret(self, secret_name_prefix="autotests-secret"): secret_name = oc_create_secret( self.ocp_client[0], secret_name_prefix=secret_name_prefix, -- cgit