From: Alfredo Deza Date: Mon, 29 Aug 2016 19:00:16 +0000 (-0400) Subject: [BZ-1304533] tests: ensure that ceph and radosgw are the default deb components X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8ffbe4115abcf2b6035d5ea499b10df7561b6638;p=ceph-deploy.git [BZ-1304533] tests: ensure that ceph and radosgw are the default deb components Signed-off-by: Alfredo Deza --- 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):