aboutsummaryrefslogtreecommitdiff
path: root/test/functional/ui/screen_basic_spec.lua
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-05 22:51:49 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-01-06 00:18:02 -0500
commit3c764aabb5d4be71a5ea0d50bf8dae0a7285677f (patch)
treeac378578c34bdf175816d8e4939eb0364eb746d7 /test/functional/ui/screen_basic_spec.lua
parent1aacab49ea0e5cff94bd89595737b6af677f4490 (diff)
downloadrneovim-3c764aabb5d4be71a5ea0d50bf8dae0a7285677f.tar.gz
rneovim-3c764aabb5d4be71a5ea0d50bf8dae0a7285677f.tar.bz2
rneovim-3c764aabb5d4be71a5ea0d50bf8dae0a7285677f.zip
vim-patch:8.1.1308: the Normal highlight is not defined when compiled with GUI
Problem: The Normal highlight is not defined when compiled with GUI. Solution: Always define Normal. (Christian Brabandt, closes vim/vim#4072) https://github.com/vim/vim/commit/f90b6e03a983b62b66564fc449e32724d6456769
Diffstat (limited to 'test/functional/ui/screen_basic_spec.lua')
-rw-r--r--test/functional/ui/screen_basic_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen_basic_spec.lua b/test/functional/ui/screen_basic_spec.lua
index 150ee2a103..ff9f30d0a1 100644
--- a/test/functional/ui/screen_basic_spec.lua
+++ b/test/functional/ui/screen_basic_spec.lua
@@ -987,7 +987,7 @@ describe('Screen default colors', function()
it('can be set to light', function()
startup(true, false)
screen:expect{condition=function()
- eq({rgb_bg=Screen.colors.White, rgb_fg=0, rgb_sp=Screen.colors.Red,
+ eq({rgb_fg=Screen.colors.White, rgb_bg=0, rgb_sp=Screen.colors.Red,
cterm_bg=0, cterm_fg=0}, screen.default_colors)
end}
end)