summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/test/package_availability_test.py
diff options
context:
space:
mode:
authorLuke Meyer <lmeyer@redhat.com>2017-10-04 09:00:17 -0400
committerLuke Meyer <lmeyer@redhat.com>2017-10-04 10:53:21 -0400
commit7edc17b56309d259634331527bf5f343f45baeaf (patch)
treeddece59d770d248295e792f905c58b54e04303d7 /roles/openshift_health_checker/test/package_availability_test.py
parenta25709a6f16913b59ef2edc3e07d8bc8a598f41e (diff)
downloadopenshift-7edc17b56309d259634331527bf5f343f45baeaf.tar.gz
openshift-7edc17b56309d259634331527bf5f343f45baeaf.tar.bz2
openshift-7edc17b56309d259634331527bf5f343f45baeaf.tar.xz
openshift-7edc17b56309d259634331527bf5f343f45baeaf.zip
openshift_checks: use oo group names everywhere
Diffstat (limited to 'roles/openshift_health_checker/test/package_availability_test.py')
-rw-r--r--roles/openshift_health_checker/test/package_availability_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/openshift_health_checker/test/package_availability_test.py b/roles/openshift_health_checker/test/package_availability_test.py
index b34e8fbfc..9815acb38 100644
--- a/roles/openshift_health_checker/test/package_availability_test.py
+++ b/roles/openshift_health_checker/test/package_availability_test.py
@@ -26,7 +26,7 @@ def test_is_active(pkg_mgr, is_containerized, is_active):
(
dict(
openshift=dict(common=dict(service_type='origin')),
- group_names=['masters'],
+ group_names=['oo_masters_to_config'],
),
set(['origin-master']),
set(['origin-node']),
@@ -34,7 +34,7 @@ def test_is_active(pkg_mgr, is_containerized, is_active):
(
dict(
openshift=dict(common=dict(service_type='atomic-openshift')),
- group_names=['nodes'],
+ group_names=['oo_nodes_to_config'],
),
set(['atomic-openshift-node']),
set(['atomic-openshift-master']),
@@ -42,7 +42,7 @@ def test_is_active(pkg_mgr, is_containerized, is_active):
(
dict(
openshift=dict(common=dict(service_type='atomic-openshift')),
- group_names=['masters', 'nodes'],
+ group_names=['oo_masters_to_config', 'oo_nodes_to_config'],
),
set(['atomic-openshift-master', 'atomic-openshift-node']),
set(),