diff options
author | James McCoy <jamessan@jamessan.com> | 2016-12-27 14:37:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-27 14:37:30 -0500 |
commit | fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13 (patch) | |
tree | f54e63aed247b7fdd7fc4b20c96317607d78ec42 /test/functional/viml/errorlist_spec.lua | |
parent | 21708d22cefdf69ab3862921483c8a450294a71c (diff) | |
parent | 3224ade9c3b6e339083ab9e66ce3d3f32e050e09 (diff) | |
download | rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.tar.gz rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.tar.bz2 rneovim-fb2d1cea3ffcc90c5e4e76ec7837e82bd1f73d13.zip |
Merge pull request #5761 from jamessan/vim-7.4.1752
Catchup with upstream quickfix patches
Diffstat (limited to 'test/functional/viml/errorlist_spec.lua')
-rw-r--r-- | test/functional/viml/errorlist_spec.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/viml/errorlist_spec.lua b/test/functional/viml/errorlist_spec.lua index 56d08771b7..f889ca9adc 100644 --- a/test/functional/viml/errorlist_spec.lua +++ b/test/functional/viml/errorlist_spec.lua @@ -18,9 +18,9 @@ describe('setqflist()', function() end) it('requires a string for {action}', function() - eq('Vim(call):E114: String required', exc_exec('call setqflist([], 5)')) - eq('Vim(call):E114: String required', exc_exec('call setqflist([], [])')) - eq('Vim(call):E114: String required', exc_exec('call setqflist([], {})')) + eq('Vim(call):E928: String required', exc_exec('call setqflist([], 5)')) + eq('Vim(call):E928: String required', exc_exec('call setqflist([], [])')) + eq('Vim(call):E928: String required', exc_exec('call setqflist([], {})')) end) it('sets w:quickfix_title', function() @@ -56,9 +56,9 @@ describe('setloclist()', function() end) it('requires a string for {action}', function() - eq('Vim(call):E114: String required', exc_exec('call setloclist(0, [], 5)')) - eq('Vim(call):E114: String required', exc_exec('call setloclist(0, [], [])')) - eq('Vim(call):E114: String required', exc_exec('call setloclist(0, [], {})')) + eq('Vim(call):E928: String required', exc_exec('call setloclist(0, [], 5)')) + eq('Vim(call):E928: String required', exc_exec('call setloclist(0, [], [])')) + eq('Vim(call):E928: String required', exc_exec('call setloclist(0, [], {})')) end) it('sets w:quickfix_title for the correct window', function() |