diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-01 10:49:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 10:49:14 +0800 |
commit | 2268a4147ec1e9f0236fd5eb56c1cc2b751eca05 (patch) | |
tree | e85448107d27109df805e865053468e199956dbe /test/functional/api/vim_spec.lua | |
parent | 5a490d838ed3288abcf45e16e6ab79c326a67c17 (diff) | |
parent | 5a62ad605e4945562d5defb5eb6a2e8a88107ebf (diff) | |
download | rneovim-2268a4147ec1e9f0236fd5eb56c1cc2b751eca05.tar.gz rneovim-2268a4147ec1e9f0236fd5eb56c1cc2b751eca05.tar.bz2 rneovim-2268a4147ec1e9f0236fd5eb56c1cc2b751eca05.zip |
Merge pull request #19170 from zeertzjq/vim-8.0.1558
vim-patch:8.0.{1558,1570,1574,1588},8.1.{0487,0695,1274}: menu features
Diffstat (limited to 'test/functional/api/vim_spec.lua')
-rw-r--r-- | test/functional/api/vim_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index 858463efbd..002bcd92a4 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -3748,7 +3748,7 @@ describe('API', function() eq("foo", meths.cmd({ cmd = "Foo" }, { output = true })) end) it('errors if command is not implemented', function() - eq("Command not implemented: popup", pcall_err(meths.cmd, { cmd = "popup" }, {})) + eq("Command not implemented: winpos", pcall_err(meths.cmd, { cmd = "winpos" }, {})) end) it('works with empty arguments list', function() meths.cmd({ cmd = "update" }, {}) |