From: Sage Weil Date: Fri, 20 Dec 2019 22:14:34 +0000 (-0600) Subject: qa/tasks/mgr/test_orchestrator_cli: fix device ls test X-Git-Tag: v15.1.0~401^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2b2c122fd8a372ceb4794272026b27e21b5ecb58;p=ceph.git qa/tasks/mgr/test_orchestrator_cli: fix device ls test No more "$host:" formatting as of 594179f1aae5fcca631b24c2f1e2dbf4a3b5c460 Signed-off-by: Sage Weil --- diff --git a/qa/tasks/mgr/test_orchestrator_cli.py b/qa/tasks/mgr/test_orchestrator_cli.py index 0de542ff738..c6b48d406d9 100644 --- a/qa/tasks/mgr/test_orchestrator_cli.py +++ b/qa/tasks/mgr/test_orchestrator_cli.py @@ -45,15 +45,15 @@ class TestOrchestratorCli(MgrTestCase): def test_device_ls(self): ret = self._orch_cmd("device", "ls") - self.assertIn("localhost:", ret) + self.assertIn("localhost", ret) def test_device_ls_refresh(self): ret = self._orch_cmd("device", "ls", "--refresh") - self.assertIn("localhost:", ret) + self.assertIn("localhost", ret) def test_device_ls_hoshs(self): ret = self._orch_cmd("device", "ls", "localhost", "host1") - self.assertIn("localhost:", ret) + self.assertIn("localhost", ret) def test_device_ls_json(self):