diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-08 09:29:37 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-08 09:29:37 -0500 |
commit | 3b23d733ddac1b42faea10e68864153d9e356da0 (patch) | |
tree | e29ad59c0e9288d60e8926c61b27e7fe6a5d51b1 /test/functional/shada/variables_spec.lua | |
parent | af5c34f8a50d547861614a4121d308d3e2a650da (diff) | |
parent | c6f6033482015723742f97aeba95d0e65f694943 (diff) | |
download | rneovim-3b23d733ddac1b42faea10e68864153d9e356da0.tar.gz rneovim-3b23d733ddac1b42faea10e68864153d9e356da0.tar.bz2 rneovim-3b23d733ddac1b42faea10e68864153d9e356da0.zip |
Merge pull request #3943 from ZyX-I/better-fref-error
eval: Use better error messages when failing to dump values
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 22054db353..3becf1bc32 100644 --- a/test/functional/shada/variables_spec.lua +++ b/test/functional/shada/variables_spec.lua @@ -143,7 +143,7 @@ describe('ShaDa support code', function() meths.set_var('U', '10') nvim_command('set shada+=!') set_additional_cmd('set shada+=!') - eq('Vim(wshada):E475: Invalid argument: attempt to dump function reference', + eq('Vim(wshada):E951: Error while dumping variable g:F, itself: attempt to dump function reference', exc_exec('wshada')) meths.set_option('shada', '') reset() @@ -156,7 +156,7 @@ describe('ShaDa support code', function() nvim_command('call add(L, L)') meths.set_var('U', '10') nvim_command('set shada+=!') - eq('Vim(wshada):E475: Invalid argument: container references itself', + eq('Vim(wshada):E952: Unable to dump variable g:L: container references itself in index 0', exc_exec('wshada')) meths.set_option('shada', '') set_additional_cmd('set shada+=!') |