diff src/testdir/test_gui.vim @ 19997:3d1de9093c01 v8.2.0554

patch 8.2.0554: the GUI doesn't set t_Co Commit: https://github.com/vim/vim/commit/acc770a10f65107131473ea2ab4ae5d429dfe172 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 15:11:06 2020 +0200 patch 8.2.0554: the GUI doesn't set t_Co Problem: The GUI doesn't set t_Co. Solution: In the GUI set t_Co to 256 * 256 * 256. (closes https://github.com/vim/vim/issues/5903)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 15:15:04 +0200
parents 2c4d9ca33769
children 6bcd12791bf1
line wrap: on
line diff
--- a/src/testdir/test_gui.vim
+++ b/src/testdir/test_gui.vim
@@ -31,6 +31,8 @@ func Test_balloon_show()
 endfunc
 
 func Test_colorscheme()
+  call assert_equal('16777216', &t_Co)
+
   let colorscheme_saved = exists('g:colors_name') ? g:colors_name : 'default'
   let g:color_count = 0
   augroup TestColors