diff options
author | ZyX <kp-pav@yandex.ru> | 2017-11-19 21:13:27 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-11-19 21:13:27 +0300 |
commit | f20f97c936f1438589c8176f62ce69c26e255f85 (patch) | |
tree | a39df3b653f20f13f6cfed9f814e837febfd170d /test/helpers.lua | |
parent | a94255a7ac22649311f858e39b217543d0d7e5e8 (diff) | |
download | rneovim-f20f97c936f1438589c8176f62ce69c26e255f85.tar.gz rneovim-f20f97c936f1438589c8176f62ce69c26e255f85.tar.bz2 rneovim-f20f97c936f1438589c8176f62ce69c26e255f85.zip |
*: Fix linter errors
Diffstat (limited to 'test/helpers.lua')
-rw-r--r-- | test/helpers.lua | 2 |
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 |