aboutsummaryrefslogtreecommitdiff
path: root/test/helpers.lua
diff options
context:
space:
mode:
authorZyX <kp-pav@yandex.ru>2017-11-19 21:13:27 +0300
committerZyX <kp-pav@yandex.ru>2017-11-19 21:13:27 +0300
commitf20f97c936f1438589c8176f62ce69c26e255f85 (patch)
treea39df3b653f20f13f6cfed9f814e837febfd170d /test/helpers.lua
parenta94255a7ac22649311f858e39b217543d0d7e5e8 (diff)
downloadrneovim-f20f97c936f1438589c8176f62ce69c26e255f85.tar.gz
rneovim-f20f97c936f1438589c8176f62ce69c26e255f85.tar.bz2
rneovim-f20f97c936f1438589c8176f62ce69c26e255f85.zip
*: Fix linter errors
Diffstat (limited to 'test/helpers.lua')
-rw-r--r--test/helpers.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index ada690a4d2..fc3936a4ce 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -522,7 +522,7 @@ local function fixtbl(tbl)
end
local function fixtbl_rec(tbl)
- for k, v in pairs(tbl) do
+ for _, v in pairs(tbl) do
if type(v) == 'table' then
fixtbl_rec(v)
end