Skip to content

Commit 912274c

Browse files
committedFeb 5, 2016
test_ctlmgr: fix
1 parent c52081c commit 912274c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎artiq/test/test_ctlmgr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ async def wait_for_ping(self, host, port, retries=5, timeout=2):
5656
raise asyncio.TimeoutError
5757

5858
def test_start_ping_stop_controller(self):
59-
command = sys.executable + " -m "
6059
entry = {
6160
"type": "controller",
6261
"host": "::1",
@@ -67,5 +66,6 @@ def test_start_ping_stop_controller(self):
6766
async def test():
6867
await self.start("lda_sim", entry)
6968
remote = await self.get_client(entry["host"], entry["port"])
69+
await remote.ping()
7070

7171
self.loop.run_until_complete(test())

0 commit comments

Comments
 (0)
Please sign in to comment.