Skip to content

Commit

Permalink
chore(deps) update luacheck from 0.20.0 to 0.23.0 (dev dependency)
Browse files Browse the repository at this point in the history
  • Loading branch information
bungle authored and dndx committed Nov 1, 2019
1 parent b736c39 commit 1aa9bc7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OS := $(shell uname | awk '{print tolower($$0)}')
MACHINE := $(shell uname -m)

DEV_ROCKS = "busted 2.0.0" "luacheck 0.20.0" "lua-llthreads2 0.1.5"
DEV_ROCKS = "busted 2.0.0" "luacheck 0.23.0" "lua-llthreads2 0.1.5"
WIN_SCRIPTS = "bin/busted" "bin/kong"
BUSTED_ARGS ?= -v
TEST_CMD ?= bin/busted $(BUSTED_ARGS)
Expand Down
2 changes: 1 addition & 1 deletion spec/01-unit/09-balancer_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("Balancer", function()
local upstream_ote

lazy_teardown(function()
ngx.log:revert()
ngx.log:revert() -- luacheck: ignore
end)


Expand Down
2 changes: 1 addition & 1 deletion spec/01-unit/11-reports_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ describe("reports", function()
end)

lazy_teardown(function()
ngx.log:revert()
ngx.log:revert() -- luacheck: ignore
end)

before_each(function()
Expand Down
2 changes: 1 addition & 1 deletion spec/01-unit/14-dns_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe("DNS", function()

lazy_teardown(function()
if type(ngx.log) == "table" then
ngx.log:revert()
ngx.log:revert() -- luacheck: ignore
end
end)

Expand Down

0 comments on commit 1aa9bc7

Please sign in to comment.