diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2016-04-13 09:24:29 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2016-04-13 09:24:29 -0300 |
commit | 982198143d3a6f5e9e4880b37206db6fbcb05c7c (patch) | |
tree | b85f5789efce5713b5e5f05b27fda6166afb17c3 /test/functional/plugin/helpers.lua | |
parent | f47a20a266f89be31e20f727de59708759795345 (diff) | |
parent | c18d5917e3442162f20eb9e95ba4bcffbbd8408b (diff) | |
download | rneovim-982198143d3a6f5e9e4880b37206db6fbcb05c7c.tar.gz rneovim-982198143d3a6f5e9e4880b37206db6fbcb05c7c.tar.bz2 rneovim-982198143d3a6f5e9e4880b37206db6fbcb05c7c.zip |
Merge PR #4398 'Update lua client'
Diffstat (limited to 'test/functional/plugin/helpers.lua')
-rw-r--r-- | test/functional/plugin/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/plugin/helpers.lua b/test/functional/plugin/helpers.lua index cc76794267..5b6ea88c34 100644 --- a/test/functional/plugin/helpers.lua +++ b/test/functional/plugin/helpers.lua @@ -25,7 +25,7 @@ local session = nil local reset = function(...) if session then - session:exit(0) + session:close() end session = spawn(nvim_argv(...)) set_session(session) |