Skip to content

Commit 4a29f07

Browse files
committedJan 28, 2016
test.ctlmgr: drop a redundant lambda
1 parent 627221a commit 4a29f07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎artiq/test/ctlmgr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def setUp(self):
2121
self.controllers = Controllers()
2222
self.controllers.host_filter = "::1"
2323
self.addCleanup(
24-
lambda: self.loop.run_until_complete(self.controllers.shutdown()))
24+
self.loop.run_until_complete, self.controllers.shutdown())
2525

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

0 commit comments

Comments
 (0)
Please sign in to comment.