forked from M-Labs/artiq
1
0
Fork 0

test_ctlmgr: fix

This commit is contained in:
Robert Jördens 2016-02-05 15:08:49 -07:00
parent c52081ca0d
commit 912274c6af
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,6 @@ class ControllerCase(unittest.TestCase):
raise asyncio.TimeoutError
def test_start_ping_stop_controller(self):
command = sys.executable + " -m "
entry = {
"type": "controller",
"host": "::1",
@ -67,5 +66,6 @@ class ControllerCase(unittest.TestCase):
async def test():
await self.start("lda_sim", entry)
remote = await self.get_client(entry["host"], entry["port"])
await remote.ping()
self.loop.run_until_complete(test())