diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-10-03 14:31:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 14:31:53 +0200 |
commit | 3beea1fe1bca5b0cf3f724ab0d06a01a04652297 (patch) | |
tree | d4049608bcde6e4ff18bcc9aa300832063a1930d /test/functional/api/vim_spec.lua | |
parent | 9fe704f88e455f886c8854604b2869c72b28e510 (diff) | |
parent | 32565922efe0d1a6e8e4dddb23295d1a08670b54 (diff) | |
download | rneovim-3beea1fe1bca5b0cf3f724ab0d06a01a04652297.tar.gz rneovim-3beea1fe1bca5b0cf3f724ab0d06a01a04652297.tar.bz2 rneovim-3beea1fe1bca5b0cf3f724ab0d06a01a04652297.zip |
Merge pull request #15516 from bfredl/keyset
refactor(api): Represent option dicts as a structs in C and reduce conversion overhead from lua
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 df602ed48c..6bcf8dd91f 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -1119,7 +1119,7 @@ describe('API', function() describe('nvim_get_context', function() it('validates args', function() - eq('unexpected key: blah', + eq("Invalid key: 'blah'", pcall_err(nvim, 'get_context', {blah={}})) eq('invalid value for key: types', pcall_err(nvim, 'get_context', {types=42})) |