diff options
author | James McCoy <jamessan@jamessan.com> | 2016-11-16 06:52:19 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 06:52:19 -0500 |
commit | 108d54bbd455635fc29541eb4bae4b9f3318aafb (patch) | |
tree | d5d829f41de3c7d151f62910f00c81bad873e47b /test/functional/shada/variables_spec.lua | |
parent | c66ca17ca1a2f396252bc554198f9e73c7073385 (diff) | |
parent | 34317846d6fa9c2d3b23742abc455eafca0e92e4 (diff) | |
download | rneovim-108d54bbd455635fc29541eb4bae4b9f3318aafb.tar.gz rneovim-108d54bbd455635fc29541eb4bae4b9f3318aafb.tar.bz2 rneovim-108d54bbd455635fc29541eb4bae4b9f3318aafb.zip |
Merge pull request #5600 from jamessan/vim-7.4.1640
vim-patch:7.4.1640,7.4.1647,7.4.1650,7.4.1664
Diffstat (limited to 'test/functional/shada/variables_spec.lua')
-rw-r--r-- | test/functional/shada/variables_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/shada/variables_spec.lua b/test/functional/shada/variables_spec.lua index 15502f0b71..a420462437 100644 --- a/test/functional/shada/variables_spec.lua +++ b/test/functional/shada/variables_spec.lua @@ -132,7 +132,7 @@ describe('ShaDa support code', function() meths.set_var('U', '10') nvim_command('set shada+=!') set_additional_cmd('set shada+=!') - eq('Vim(wshada):E951: Error while dumping variable g:F, itself: attempt to dump function reference', + eq('Vim(wshada):E5004: Error while dumping variable g:F, itself: attempt to dump function reference', exc_exec('wshada')) meths.set_option('shada', '') reset() @@ -145,7 +145,7 @@ describe('ShaDa support code', function() nvim_command('call add(L, L)') meths.set_var('U', '10') nvim_command('set shada+=!') - eq('Vim(wshada):E952: Unable to dump variable g:L: container references itself in index 0', + eq('Vim(wshada):E5005: Unable to dump variable g:L: container references itself in index 0', exc_exec('wshada')) meths.set_option('shada', '') set_additional_cmd('set shada+=!') |