diff options
author | ZyX <kp-pav@yandex.ru> | 2017-01-29 00:52:48 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-27 00:12:23 +0300 |
commit | 140cd0da1d0b10cf19a501696971ca2e20eff75b (patch) | |
tree | 4a4cbed1ea82306fcbfe058dcdabd2151e3c94c0 /test/functional/helpers.lua | |
parent | d836464cd2a6cdb4f4b797677794a376d5a12a45 (diff) | |
download | rneovim-140cd0da1d0b10cf19a501696971ca2e20eff75b.tar.gz rneovim-140cd0da1d0b10cf19a501696971ca2e20eff75b.tar.bz2 rneovim-140cd0da1d0b10cf19a501696971ca2e20eff75b.zip |
functests: Fix “function has more then 60 upvalues” error
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 13a0cff137..a62c05128b 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -570,7 +570,7 @@ local curbufmeths = create_callindex(curbuf) local curwinmeths = create_callindex(curwin) local curtabmeths = create_callindex(curtab) -local M = { +local module = { prepend_argv = prepend_argv, clear = clear, connect = connect, @@ -644,5 +644,5 @@ return function(after_each) check_cores('build/bin/nvim') end) end - return M + return module end |