Skip to content

Commit

Permalink
Update check_paas.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhil1697 authored Feb 29, 2024
1 parent 36eae3b commit fe1d3bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubemarine/procedures/check_paas.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def check_packages_versions(cluster: KubernetesCluster, tc: TestCase, hosts_to_p
if version.startswith(package_name):
good_results.append(version)
else:
bad_results.append(f"{package} (Actual version: {version}, Expected package: {package_name})")
bad_results.append(f"{package} (Actual version: {version}, Expected package version: {package_name})")
if bad_results:
hint_message = f'Check the presence and correctness of the version of the following packages on the ' \
f'system: {bad_results}'
Expand Down

0 comments on commit fe1d3bc

Please sign in to comment.