From 8ffbe4115abcf2b6035d5ea499b10df7561b6638 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 29 Aug 2016 15:00:16 -0400 Subject: [PATCH] [BZ-1304533] tests: ensure that ceph and radosgw are the default deb components Signed-off-by: Alfredo Deza --- ceph_deploy/tests/test_install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ceph_deploy/tests/test_install.py b/ceph_deploy/tests/test_install.py index a8bd326..373403d 100644 --- a/ceph_deploy/tests/test_install.py +++ b/ceph_deploy/tests/test_install.py @@ -64,7 +64,7 @@ class TestDetectComponents(object): self.distro.is_deb = True result = sorted(install.detect_components(self.args, self.distro)) assert result == sorted([ - 'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw' + 'ceph', 'radosgw' ]) def test_install_all_with_other_options_returns_all_packages_deb(self): @@ -76,7 +76,7 @@ class TestDetectComponents(object): self.args.install_osd = True result = sorted(install.detect_components(self.args, self.distro)) assert result == sorted([ - 'ceph-osd', 'ceph-mds', 'ceph-mon', 'radosgw' + 'ceph', 'radosgw' ]) def test_install_all_returns_all_packages_rpm(self): -- 2.47.3