From 2b2c122fd8a372ceb4794272026b27e21b5ecb58 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 20 Dec 2019 16:14:34 -0600 Subject: [PATCH] qa/tasks/mgr/test_orchestrator_cli: fix device ls test No more "$host:" formatting as of 594179f1aae5fcca631b24c2f1e2dbf4a3b5c460 Signed-off-by: Sage Weil --- qa/tasks/mgr/test_orchestrator_cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/tasks/mgr/test_orchestrator_cli.py b/qa/tasks/mgr/test_orchestrator_cli.py index 0de542ff7383a..c6b48d406d9d0 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): -- 2.39.5