Skip to content

Commit

Permalink
test.ctlmgr: drop a redundant lambda
Browse files Browse the repository at this point in the history
jordens committed Jan 28, 2016
1 parent 627221a commit 4a29f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/test/ctlmgr.py
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ def setUp(self):
self.controllers = Controllers()
self.controllers.host_filter = "::1"
self.addCleanup(
lambda: self.loop.run_until_complete(self.controllers.shutdown()))
self.loop.run_until_complete, self.controllers.shutdown())

async def start(self, name, entry):
self.controllers[name] = entry

0 comments on commit 4a29f07

Please sign in to comment.