From ff5509295a2dc6ef294f035bdc93d469a63ea56c Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 4 Feb 2019 16:58:05 +0100 Subject: [PATCH] tests: remove useless test `test_mon_host_line_has_correct_value()` will cover this test in anycase. It doesn't worth to have a dedicated test for this. Signed-off-by: Guillaume Abrioux --- tests/functional/tests/test_install.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/functional/tests/test_install.py b/tests/functional/tests/test_install.py index 5c958b541..de22ead7d 100644 --- a/tests/functional/tests/test_install.py +++ b/tests/functional/tests/test_install.py @@ -23,9 +23,6 @@ class TestInstall(object): class TestCephConf(object): - def test_ceph_config_has_mon_host_line(self, node, File): - assert File(node["conf_path"]).contains("^mon host = .*$") - def test_mon_host_line_has_correct_value(self, node, host): mon_host_line = host.check_output("grep 'mon host = ' /etc/ceph/{cluster}.conf".format(cluster=node['cluster_name'])) # noqa E501 result = True