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):