Skip to content

Commit

Permalink
Fix for identaiton
Browse files Browse the repository at this point in the history
  • Loading branch information
sshmulev committed Aug 7, 2024
1 parent 3be3bf4 commit bec2721
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test_suite/cloud/test_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,15 +570,15 @@ def test_yum_group_install(self, host):
' && yum clean all'
)

result_second_attempt = test_lib.print_host_command_output(
host, dev_tools_install_command, capture_result=True
)

assert result_second_attempt.succeeded, (
'Error while installing Development tools group after two attempts. '
'Check test case output for more details.'
)
print('"Development tools" installed successfully.')
result_second_attempt = test_lib.print_host_command_output(
host, dev_tools_install_command, capture_result=True
)

assert result_second_attempt.succeeded, (
'Error while installing Development tools group after two attempts. '
'Check test case output for more details.'
)
print('"Development tools" installed successfully.')

package_to_check = 'glibc-devel'
assert host.package(package_to_check).is_installed, \
Expand Down

0 comments on commit bec2721

Please sign in to comment.