diff options
author | James McCoy <jamessan@jamessan.com> | 2017-07-14 06:49:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-14 06:49:59 -0400 |
commit | da99ded25bf4972638b7c83c0ac165b7138d3aab (patch) | |
tree | 20a8956e5fe75c193dcaa96ed9be0ba96a2912cb /test | |
parent | dabd9ef44bb30b403e5a13ab1b6534cef6d8d8d0 (diff) | |
parent | 08e4b6b4f377aa3cc9f9fd10c0049783dc1f4a94 (diff) | |
download | rneovim-da99ded25bf4972638b7c83c0ac165b7138d3aab.tar.gz rneovim-da99ded25bf4972638b7c83c0ac165b7138d3aab.tar.bz2 rneovim-da99ded25bf4972638b7c83c0ac165b7138d3aab.zip |
Merge pull request #6486 from jamessan/vim8-patches
Bump Vim version to 8.0 and applied patches
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/plugin/shada_spec.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/functional/plugin/shada_spec.lua b/test/functional/plugin/shada_spec.lua index 639833071b..dbc78e63f0 100644 --- a/test/functional/plugin/shada_spec.lua +++ b/test/functional/plugin/shada_spec.lua @@ -2076,13 +2076,14 @@ describe('In autoload/shada.vim', function() end it('works', function() + local version = nvim('get_vvar', 'version') getbstrings_eq({{timestamp='current', type=1, value={ generator='shada.vim', - version=704, + version=version, }}}, {}) getbstrings_eq({ {timestamp='current', type=1, value={ - generator='shada.vim', version=704 + generator='shada.vim', version=version }}, {timestamp=0, type=1, value={generator='test'}} }, { @@ -2093,11 +2094,11 @@ describe('In autoload/shada.vim', function() nvim('set_var', 'shada#add_own_header', 1) getbstrings_eq({{timestamp='current', type=1, value={ generator='shada.vim', - version=704, + version=version, }}}, {}) getbstrings_eq({ {timestamp='current', type=1, value={ - generator='shada.vim', version=704 + generator='shada.vim', version=version }}, {timestamp=0, type=1, value={generator='test'}} }, { |