aboutsummaryrefslogtreecommitdiff
path: root/test/functional/vimscript
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-04-06 11:18:43 +0800
committerGitHub <noreply@github.com>2024-04-06 11:18:43 +0800
commitae28ef327e02ac87ef26f941c401312ed0462d8c (patch)
treedca68db1160d5d8657589298f17b4b5fe5553289 /test/functional/vimscript
parentddbd2b4e40d0b744d4d5b2b2251a4fc4c51f43e1 (diff)
downloadrneovim-ae28ef327e02ac87ef26f941c401312ed0462d8c.tar.gz
rneovim-ae28ef327e02ac87ef26f941c401312ed0462d8c.tar.bz2
rneovim-ae28ef327e02ac87ef26f941c401312ed0462d8c.zip
fix: adjust error message for error in UI event callback (#28200)
Also close Nvim instance before removing log file, otherwise the Nvim instance will still write to the log file. Also adjust log level in libuv_process_spawn(). Ref #27660
Diffstat (limited to 'test/functional/vimscript')
-rw-r--r--test/functional/vimscript/server_spec.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/vimscript/server_spec.lua b/test/functional/vimscript/server_spec.lua
index c6c9e9c0ab..7a48633299 100644
--- a/test/functional/vimscript/server_spec.lua
+++ b/test/functional/vimscript/server_spec.lua
@@ -5,6 +5,7 @@ local clear, fn, api = helpers.clear, helpers.fn, helpers.api
local ok = helpers.ok
local matches = helpers.matches
local pcall_err = helpers.pcall_err
+local check_close = helpers.check_close
local mkdir = helpers.mkdir
local is_os = helpers.is_os
@@ -18,6 +19,7 @@ end
describe('server', function()
after_each(function()
+ check_close()
os.remove(testlog)
end)