Skip to content
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

[6.12.z] Fix typo for organization field in global registration #12904

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix typo for organization field in global registration (#12902)
Signed-off-by: Gaurav Talreja <gtalreja@redhat.com>
(cherry picked from commit 5b7f1cb)
  • Loading branch information
Gauravtalreja1 authored and web-flow committed Oct 13, 2023
commit 70015ba75534088f10fbf65c3930e4ae87871dbd
2 changes: 1 addition & 1 deletion tests/foreman/ui/test_host.py
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,7 @@ def test_global_registration_with_capsule_host(
session.location.select(loc_name=module_location.name)
cmd = session.host.get_register_command(
{
'general.orgnization': module_org.name,
'general.organization': module_org.name,
'general.location': module_location.name,
'general.operating_system': default_os.title,
'general.capsule': capsule_configured.hostname,
Expand Down
2 changes: 1 addition & 1 deletion tests/foreman/ui/test_rhcloud_insights.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def test_insights_registration_with_capsule(
cmd = session.host.get_register_command(
{
'general.operating_system': default_os.title,
'general.orgnization': org.name,
'general.organization': org.name,
'general.capsule': rhcloud_capsule.hostname,
'advanced.activation_keys': ak.name,
'general.insecure': True,
Expand Down