diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2016-04-13 09:21:32 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2016-04-13 09:21:32 -0300 |
commit | c18d5917e3442162f20eb9e95ba4bcffbbd8408b (patch) | |
tree | b85f5789efce5713b5e5f05b27fda6166afb17c3 /test/functional/api/vim_spec.lua | |
parent | 10a8bb02acabe2c3a0d7cd2e9d8462e0228769a1 (diff) | |
download | rneovim-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/api/vim_spec.lua')
-rw-r--r-- | test/functional/api/vim_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index 99f67fe43a..699a0bd588 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -80,7 +80,7 @@ describe('vim_* functions', function() it('set_var returns the old value', function() local val1 = {1, 2, {['3'] = 1}} local val2 = {4, 7} - eq(nil, nvim('set_var', 'lua', val1)) + eq(NIL, nvim('set_var', 'lua', val1)) eq(val1, nvim('set_var', 'lua', val2)) end) |