aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ex_cmds
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2016-04-13 09:21:32 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2016-04-13 09:21:32 -0300
commitc18d5917e3442162f20eb9e95ba4bcffbbd8408b (patch)
treeb85f5789efce5713b5e5f05b27fda6166afb17c3 /test/functional/ex_cmds
parent10a8bb02acabe2c3a0d7cd2e9d8462e0228769a1 (diff)
downloadrneovim-c18d5917e3442162f20eb9e95ba4bcffbbd8408b.tar.gz
rneovim-c18d5917e3442162f20eb9e95ba4bcffbbd8408b.tar.bz2
rneovim-c18d5917e3442162f20eb9e95ba4bcffbbd8408b.zip
Update lua client to 0.0.1-24
The new version of the lua client uses libmpack as a backend, and some test scripts had to be updated to reflect that.
Diffstat (limited to 'test/functional/ex_cmds')
-rw-r--r--test/functional/ex_cmds/wundo_spec.lua2
-rw-r--r--test/functional/ex_cmds/wviminfo_spec.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/ex_cmds/wundo_spec.lua b/test/functional/ex_cmds/wundo_spec.lua
index c3147e1c0f..969dfea3d9 100644
--- a/test/functional/ex_cmds/wundo_spec.lua
+++ b/test/functional/ex_cmds/wundo_spec.lua
@@ -24,6 +24,6 @@ describe('u_* functions', function()
'-c', 'set undodir=. undofile'})
set_session(session)
execute('echo "True"') -- Should not error out due to crashed Neovim
- session:exit(0)
+ session:close()
end)
end)
diff --git a/test/functional/ex_cmds/wviminfo_spec.lua b/test/functional/ex_cmds/wviminfo_spec.lua
index 207d94124f..21f14be62c 100644
--- a/test/functional/ex_cmds/wviminfo_spec.lua
+++ b/test/functional/ex_cmds/wviminfo_spec.lua
@@ -9,7 +9,7 @@ describe(':wshada', function()
before_each(function()
if session then
- session:exit(0)
+ session:close()
end
-- Override the default session because we need 'swapfile' for these tests.