From b09c5329b71bed06a7bd621c53c79d428f2dbf64 Mon Sep 17 00:00:00 2001 From: Satellite QE <115476073+Satellite-QE@users.noreply.github.com> Date: Fri, 6 Sep 2024 12:58:23 -0400 Subject: [PATCH] [6.16.z] Small test fix for manage columns (#16266) --- tests/foreman/ui/test_host.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/foreman/ui/test_host.py b/tests/foreman/ui/test_host.py index ed2c219c95d..1d0b16a720a 100644 --- a/tests/foreman/ui/test_host.py +++ b/tests/foreman/ui/test_host.py @@ -1206,7 +1206,7 @@ def test_positive_manage_table_columns( @pytest.mark.tier2 -def test_all_hosts_manage_columns(target_sat, function_org, new_host_ui): +def test_all_hosts_manage_columns(target_sat, new_host_ui): """Verify that the manage columns widget changes the columns appropriately :id: 5e13267a-68d2-451a-ae00-6502dd5db7f4 @@ -1231,7 +1231,6 @@ def test_all_hosts_manage_columns(target_sat, function_org, new_host_ui): 'Boot time': True, } with target_sat.ui_session() as session: - session.organization.select(function_org.name) session.all_hosts.manage_table_columns(columns) displayed_columns = session.all_hosts.get_displayed_table_headers() for column, is_displayed in columns.items():