Skip to content

Commit

Permalink
Fixed regreesion
Browse files Browse the repository at this point in the history
Fixed regression which was introduced 6fbbbb1
  • Loading branch information
PraveenPenguin authored Oct 3, 2024
1 parent 6fbbbb1 commit e95835f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testcases/Lcov.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def runTest(self):
dep_packages = ['perl*', 'tiny*']
log.info("installing the dependency packages")
for pkg in dep_packages:
if self.distro_name == 'rhel':
if self.distro == 'rhel':
self.cv_HOST.host_run_command(f"{cmd} {pkg} -y")
elif self.distro_name == 'sles':
elif self.distro == 'sles':
self.cv_HOST.host_run_command(f"{cmd} -y {pkg}")
time.sleep(5)
log.info("changing dir to /home")
Expand Down

0 comments on commit e95835f

Please sign in to comment.