aboutsummaryrefslogtreecommitdiff
path: root/test/functional/lua/vim_spec.lua
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-11-14 18:56:56 +0100
committerGitHub <noreply@github.com>2024-11-14 18:56:56 +0100
commit05d354e2165c2c331a33949d49095eef3503a32f (patch)
tree1be1b0a84e056d190e5e342ec24a9b0fc166ec99 /test/functional/lua/vim_spec.lua
parent434d5936b6e92e8a5557a03adf0e35b7902645ad (diff)
parentde48fbbd5f8800bd7f1909a6fb41e53e871cf74c (diff)
downloadrneovim-05d354e2165c2c331a33949d49095eef3503a32f.tar.gz
rneovim-05d354e2165c2c331a33949d49095eef3503a32f.tar.bz2
rneovim-05d354e2165c2c331a33949d49095eef3503a32f.zip
Merge pull request #27874 from luukvbaal/funcerr
fix(messages)!: vim.ui_attach message callbacks are unsafe
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r--test/functional/lua/vim_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua
index 0578d88e66..3cfbfe167a 100644
--- a/test/functional/lua/vim_spec.lua
+++ b/test/functional/lua/vim_spec.lua
@@ -1414,7 +1414,7 @@ describe('lua stdlib', function()
screen:expect {
grid = [[
{9:[string "<nvim>"]:6: E5560: rpcrequest must not be}|
- {9: called in a lua loop callback} |
+ {9: called in a fast event context} |
{9:stack traceback:} |
{9: [C]: in function 'rpcrequest'} |
{9: [string "<nvim>"]:6: in function <[string }|
@@ -3783,7 +3783,7 @@ stack traceback:
end)
]])
screen:expect({
- any = pesc('E5560: vim.wait must not be called in a lua loop callback'),
+ any = pesc('E5560: vim.wait must not be called in a fast event context'),
})
feed('<CR>')
assert_alive()