From 1ca1c9bb323f9c30f287fa358b7cdcf7bafcc092 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Thu, 22 Mar 2018 23:15:04 +0100 Subject: util.async: Use wrapper for once runner (thanks luacheck) --- spec/util_async_spec.lua | 1 + util/async.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/util_async_spec.lua b/spec/util_async_spec.lua index 7c1696b5..959ad65b 100644 --- a/spec/util_async_spec.lua +++ b/spec/util_async_spec.lua @@ -601,6 +601,7 @@ describe("util.async", function() end); async.once(f); assert.spy(f).was.called(); + assert.spy(f).was.called_with(); end); it("should propagate errors", function () local function should_error() diff --git a/util/async.lua b/util/async.lua index e8469e51..f042b177 100644 --- a/util/async.lua +++ b/util/async.lua @@ -231,7 +231,7 @@ do }; local function once_runner(func) func(); end function once(func) - local r = runner(func, once_watchers); + local r = runner(once_runner, once_watchers); return r:run(func); end end -- cgit v1.2.3