diff src/testdir/test_terminal.vim @ 18137:5a5e9eed6029 v8.1.2063

patch 8.1.2063: some tests fail when +balloon_eval_term is missing Commit: https://github.com/vim/vim/commit/1e82a784ace6d2c4dce594dd6156bcb0028bba9e Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 21 22:57:06 2019 +0200 patch 8.1.2063: some tests fail when +balloon_eval_term is missing Problem: Some tests fail when +balloon_eval_term is missing but _balloon_eval is present. (Dominique Pelle) Solution: Check the right feature in the test. (closes #4962)
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 Sep 2019 23:00:04 +0200
parents 873068e19e1f
children 2416e1a887ca
line wrap: on
line diff
--- a/src/testdir/test_terminal.vim
+++ b/src/testdir/test_terminal.vim
@@ -1466,6 +1466,7 @@ let s:test_colors = [
 	\]
 
 func Test_terminal_ansicolors_global()
+  CheckFeature termguicolors
   if !exists('*term_getansicolors')
     throw 'Skipped: term_getansicolors() not supported'
   endif
@@ -1480,6 +1481,7 @@ func Test_terminal_ansicolors_global()
 endfunc
 
 func Test_terminal_ansicolors_func()
+  CheckFeature termguicolors
   if !exists('*term_getansicolors')
     throw 'Skipped: term_getansicolors() not supported'
   endif