From 912274c6af9c8deb9fbb43ef5e25a5999969cdf8 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Fri, 5 Feb 2016 15:08:49 -0700 Subject: [PATCH] test_ctlmgr: fix --- artiq/test/test_ctlmgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/test/test_ctlmgr.py b/artiq/test/test_ctlmgr.py index de205a677..7f081ca62 100644 --- a/artiq/test/test_ctlmgr.py +++ b/artiq/test/test_ctlmgr.py @@ -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())