diff options
-rw-r--r-- | spec/util_cache_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_cache_spec.lua b/spec/util_cache_spec.lua index 9c7d75fe..15e86ee9 100644 --- a/spec/util_cache_spec.lua +++ b/spec/util_cache_spec.lua @@ -288,7 +288,7 @@ describe("util.cache", function() expect_kv("c", 3, c4:head()); expect_kv("a", 1, c4:tail()); - local c5 = cache.new(3, function (k, v) + local c5 = cache.new(3, function (k, v) --luacheck: ignore 212/v if k == "a" then return nil; elseif k == "b" then |