-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix for remote execution cli tests #13167
Conversation
@@ -1307,7 +1315,9 @@ def test_positive_run_job_on_host_registered_to_pull_provider( | |||
'effective-user': f'{username}', | |||
} | |||
) | |||
assert_job_invocation_result(invocation_command['id'], rhel_contenthost.hostname) | |||
assert_job_invocation_result( | |||
target_sat, invocation_command['id'], rhel_contenthost.hostname |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pondrejk test_positive_run_job_on_host_registered_to_pull_provider
is using both module_targe_sat
and target_sat
is this intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ugh, god no, good chatch :) this was also introduced by 11544
(cherry picked from commit ab77c09)
(cherry picked from commit ab77c09)
Problem Statement
#11544 changed the number of required arguments of the
assert_job_invocation_result
function, but it didn't update all the callers accordingly, leading to all cli rex tests failing in the stream automation runSolution
changed callers
Related Issues
#11544 requires manual cherry-picks, when that happens, this pr should be cherrypicked closely afterwards