diff options
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 2919165280..1be70f917c 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -566,7 +566,7 @@ local function get_pathsep() return funcs.fnamemodify('.', ':p'):sub(-1) end -local M = { +local module = { prepend_argv = prepend_argv, clear = clear, connect = connect, @@ -641,5 +641,5 @@ return function(after_each) check_cores('build/bin/nvim') end) end - return M + return module end |