diff options
author | Gregory Anders <greg@gpanders.com> | 2024-05-30 19:57:47 -0500 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2024-05-31 08:25:35 -0500 |
commit | d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c (patch) | |
tree | 0038a6861570fd0c0ab7bdd2f73f7c3bfd6c5d5e | |
parent | 88fe467b194f21cace92109dffc68e8b1362be3e (diff) | |
download | rneovim-d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c.tar.gz rneovim-d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c.tar.bz2 rneovim-d24f3d055ae7b3e9e47e9eb53a1dafb3ad44760c.zip |
test: do not set termguicolors in test runner
It's not clear why this is needed and it has adverse side effects on
other tests.
-rw-r--r-- | test/functional/testnvim.lua | 2 | ||||
-rw-r--r-- | test/functional/ui/popupmenu_spec.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/testnvim.lua b/test/functional/testnvim.lua index 6b858e4d69..5f24ef3fe6 100644 --- a/test/functional/testnvim.lua +++ b/test/functional/testnvim.lua @@ -22,7 +22,7 @@ local runtime_set = 'set runtimepath^=./build/lib/nvim/' M.nvim_prog = (os.getenv('NVIM_PRG') or t.paths.test_build_dir .. '/bin/nvim') -- Default settings for the test session. M.nvim_set = ( - 'set shortmess+=IS background=light termguicolors noswapfile noautoindent startofline' + 'set shortmess+=IS background=light noswapfile noautoindent startofline' .. ' laststatus=1 undodir=. directory=. viewdir=. backupdir=.' .. ' belloff= wildoptions-=pum joinspaces noshowcmd noruler nomore redrawdebug=invalid' ) diff --git a/test/functional/ui/popupmenu_spec.lua b/test/functional/ui/popupmenu_spec.lua index 8f8604eecb..cc21a797e3 100644 --- a/test/functional/ui/popupmenu_spec.lua +++ b/test/functional/ui/popupmenu_spec.lua @@ -1129,7 +1129,7 @@ describe("builtin popupmenu 'pumblend'", function() [10] = { foreground = tonumber('0x000002') }, }) screen:attach({ rgb = false }) - command('set notermguicolors pumblend=10') + command('set pumblend=10') insert([[ Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor |