# HG changeset patch # User Kim Alvefur # Date 1577578315 -3600 # Node ID 3b8431eed785f17d0be7903403acbf8dd34c3263 # Parent d960c703e6b3c346f0f292ad013896e6af2e1bb3 util.pubsub: Ignore unused argument in tests [luacheck] diff -r d960c703e6b3 -r 3b8431eed785 spec/util_pubsub_spec.lua --- a/spec/util_pubsub_spec.lua Thu Dec 26 01:52:14 2019 +0100 +++ b/spec/util_pubsub_spec.lua Sun Dec 29 01:11:55 2019 +0100 @@ -485,7 +485,7 @@ describe("subscriber filter", function () it("works", function () - local filter = spy.new(function (subs) + local filter = spy.new(function (subs) -- luacheck: ignore 212/subs return {["modified"] = true}; end); local broadcaster = spy.new(function (notif_type, node_name, subscribers, item) -- luacheck: ignore 212