aboutsummaryrefslogtreecommitdiff
path: root/test/functional/eval/api_functions_spec.lua
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2020-01-14 09:21:10 +0100
committerGitHub <noreply@github.com>2020-01-14 09:21:10 +0100
commit3d1531aee5d92375b69098de8f8c788ea407b066 (patch)
tree3b208e3ab6d243c9f1ed50828ff556fa7e79d530 /test/functional/eval/api_functions_spec.lua
parent92316849863bb2661ee5b4bb284f56163fed27ad (diff)
downloadrneovim-3d1531aee5d92375b69098de8f8c788ea407b066.tar.gz
rneovim-3d1531aee5d92375b69098de8f8c788ea407b066.tar.bz2
rneovim-3d1531aee5d92375b69098de8f8c788ea407b066.zip
API: include invalid buffer/window/tabpage in error message (#11712)
Diffstat (limited to 'test/functional/eval/api_functions_spec.lua')
-rw-r--r--test/functional/eval/api_functions_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/eval/api_functions_spec.lua b/test/functional/eval/api_functions_spec.lua
index f527aff33f..ccd97fc8c7 100644
--- a/test/functional/eval/api_functions_spec.lua
+++ b/test/functional/eval/api_functions_spec.lua
@@ -44,7 +44,7 @@ describe('eval-API', function()
eq('Vim(call):E5555: API call: Wrong type for argument 1, expecting Buffer', err)
err = exc_exec('call nvim_buf_line_count(17)')
- eq('Vim(call):E5555: API call: Invalid buffer id', err)
+ eq('Vim(call):E5555: API call: Invalid buffer id: 17', err)
end)