aboutsummaryrefslogtreecommitdiff
path: root/test/functional/core
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2024-12-04 07:20:04 -0800
committerGitHub <noreply@github.com>2024-12-04 07:20:04 -0800
commit6551e3063043b86acc90476297645150bd198c3a (patch)
treef778b332a0becb3494c8e93cea9bf14de9df101e /test/functional/core
parent734dba04d13bc7a6714134af322d49f333bfdc4c (diff)
parent48bdbf12d0db441bb565c306385a88d05b3903b2 (diff)
downloadrneovim-6551e3063043b86acc90476297645150bd198c3a.tar.gz
rneovim-6551e3063043b86acc90476297645150bd198c3a.tar.bz2
rneovim-6551e3063043b86acc90476297645150bd198c3a.zip
Merge #31358 fix test failures for release / tarball builds
Diffstat (limited to 'test/functional/core')
-rw-r--r--test/functional/core/main_spec.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/core/main_spec.lua b/test/functional/core/main_spec.lua
index a445423efc..3b7cefb89f 100644
--- a/test/functional/core/main_spec.lua
+++ b/test/functional/core/main_spec.lua
@@ -188,9 +188,9 @@ describe('command-line option', function()
it('nvim -v, :version', function()
matches('Run ":verbose version"', fn.execute(':version'))
- matches('Compilation: .*Run :checkhealth', fn.execute(':verbose version'))
+ matches('fall%-back for %$VIM: .*Run :checkhealth', fn.execute(':verbose version'))
matches('Run "nvim %-V1 %-v"', fn.system({ nvim_prog_abs(), '-v' }))
- matches('Compilation: .*Run :checkhealth', fn.system({ nvim_prog_abs(), '-V1', '-v' }))
+ matches('fall%-back for %$VIM: .*Run :checkhealth', fn.system({ nvim_prog_abs(), '-V1', '-v' }))
end)
if is_os('win') then