From e904c4a9e0ff8dad169b647a1302dd562fe9068f Mon Sep 17 00:00:00 2001 From: yanpliu Date: Wed, 5 Jul 2023 11:12:30 -0400 Subject: [PATCH] virtwho-config:Update whitelist&blacklist (#11809) --- tests/foreman/virtwho/api/test_esx_sca.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/foreman/virtwho/api/test_esx_sca.py b/tests/foreman/virtwho/api/test_esx_sca.py index ada886ea4ec..2388d0e924e 100644 --- a/tests/foreman/virtwho/api/test_esx_sca.py +++ b/tests/foreman/virtwho/api/test_esx_sca.py @@ -266,7 +266,7 @@ def test_positive_filter_option( assert get_configure_option('filter_hosts', config_file) == regex assert ( get_configure_option('filter_host_parents', config_file) - == whitelist['filter_host_parents'] + == whitelist['whitelist'] ) assert result.whitelist == regex assert result.filter_host_parents == regex @@ -275,7 +275,7 @@ def test_positive_filter_option( assert get_configure_option('exclude_hosts', config_file) == regex assert ( get_configure_option('exclude_host_parents', config_file) - == blacklist['exclude_host_parents'] + == blacklist['blacklist'] ) assert result.blacklist == regex assert result.exclude_host_parents == regex