Skip to content

Commit 42b39e5

Browse files
authored
Merge pull request #826 from TasmiyaNalatwad/htxbootme_indentation_error_fix
Fixing indentation error in htxbootme test code.
2 parents 90479de + b9ad643 commit 42b39e5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

testcases/OpTestHtxBootme.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def setUp(self):
7474
self.boot_count = int(self.conf.args.boot_count)
7575
self.htx_rpm_link=self.conf.args.htx_rpm_link
7676

77-
if not self.execute_remote_command('test -e {}'.format(path)):
77+
if not self.execute_remote_command('test -e {}'.format(path)):
7878
log.debug("MDT file %s not found due to config" % self.mdt_file)
7979

8080
self.host_distro_name = self.util.distro_name()
@@ -107,9 +107,10 @@ def install_latest_htx_rpm(self):
107107
self.latest_htx_rpm = distro_specific_htx_versions[0]
108108

109109
if "error:" in self.con.run_command('rpm -ivh --nodeps %s%s '
110-
'--force' % (self.htx_rpm_link, self.latest_htx_rpm
111-
), timeout=180):
112-
self.fail("Installion of rpm failed")
110+
'--force' % (self.htx_rpm_link,
111+
self.latest_htx_rpm
112+
), timeout=180):
113+
self.fail("Installion of rpm failed")
113114

114115
def setup_htx(self):
115116
"""

0 commit comments

Comments
 (0)