aboutsummaryrefslogtreecommitdiff
path: root/test/functional/shada/errors_spec.lua
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-11-16 06:52:19 -0500
committerGitHub <noreply@github.com>2016-11-16 06:52:19 -0500
commit108d54bbd455635fc29541eb4bae4b9f3318aafb (patch)
treed5d829f41de3c7d151f62910f00c81bad873e47b /test/functional/shada/errors_spec.lua
parentc66ca17ca1a2f396252bc554198f9e73c7073385 (diff)
parent34317846d6fa9c2d3b23742abc455eafca0e92e4 (diff)
downloadrneovim-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/errors_spec.lua')
-rw-r--r--test/functional/shada/errors_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/shada/errors_spec.lua b/test/functional/shada/errors_spec.lua
index 98ead6cc3d..19f35571d7 100644
--- a/test/functional/shada/errors_spec.lua
+++ b/test/functional/shada/errors_spec.lua
@@ -497,7 +497,7 @@ $
it('errors when a funcref is stored in a variable', function()
nvim_command('let F = function("tr")')
nvim_command('set shada+=!')
- eq('\nE951: Error while dumping variable g:F, itself: attempt to dump function reference'
+ eq('\nE5004: Error while dumping variable g:F, itself: attempt to dump function reference'
.. '\nE574: Failed to write variable F',
redir_exec('wshada'))
end)
@@ -506,7 +506,7 @@ $
nvim_command('let L = []')
nvim_command('call add(L, L)')
nvim_command('set shada+=!')
- eq('\nE952: Unable to dump variable g:L: container references itself in index 0'
+ eq('\nE5005: Unable to dump variable g:L: container references itself in index 0'
.. '\nE574: Failed to write variable L',
redir_exec('wshada'))
end)