From: Dimitri Savineau Date: Mon, 25 Feb 2019 18:12:05 +0000 (-0500) Subject: test_altlinux: Remove print statement X-Git-Tag: v2.1.0~23^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f6918ba87c36ad655191153aa991f5ceeb9eebe7;p=ceph-deploy.git test_altlinux: Remove print statement The commit 6190bb2 introduced an unnecessary print statement in the altlinux tests. Signed-off-by: Dimitri Savineau --- diff --git a/ceph_deploy/tests/unit/hosts/test_altlinux.py b/ceph_deploy/tests/unit/hosts/test_altlinux.py index d24dfc2..cc65fde 100644 --- a/ceph_deploy/tests/unit/hosts/test_altlinux.py +++ b/ceph_deploy/tests/unit/hosts/test_altlinux.py @@ -4,7 +4,6 @@ from ceph_deploy.hosts.alt.install import map_components, NON_SPLIT_PACKAGES class TestALTMapComponents(object): def test_valid(self): pkgs = map_components(NON_SPLIT_PACKAGES, ['ceph-osd', 'ceph-common', 'ceph-radosgw']) - print(pkgs) assert 'ceph' in pkgs assert 'ceph-common' in pkgs assert 'ceph-radosgw' in pkgs