From 78c85f201e117d6630535b81dac825fc7c49477e Mon Sep 17 00:00:00 2001 From: Samuel Bible Date: Fri, 6 Sep 2024 11:38:28 -0500 Subject: [PATCH] Small test fix for manage columns (#16265) --- 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():