aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdnoC <adam.r.cutler@gmail.com>2016-04-24 21:07:05 -0400
committerAdnoC <adam.r.cutler@gmail.com>2016-05-17 16:36:38 -0400
commit724fc8859745370b7ebe971eee79f21dedadcdc2 (patch)
tree94061828f9095e0aae2028f790252f73748d4250
parenta5ac389e5c0484824552ffeede64b9e2be75b883 (diff)
downloadrneovim-724fc8859745370b7ebe971eee79f21dedadcdc2.tar.gz
rneovim-724fc8859745370b7ebe971eee79f21dedadcdc2.tar.bz2
rneovim-724fc8859745370b7ebe971eee79f21dedadcdc2.zip
test: Edit the special color test
-rw-r--r--test/functional/ui/highlight_spec.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua
index cd3fba2a17..c46dd59ada 100644
--- a/test/functional/ui/highlight_spec.lua
+++ b/test/functional/ui/highlight_spec.lua
@@ -312,8 +312,7 @@ describe('New special highlight color attribute', function()
screen = Screen.new(25,10)
screen:attach()
screen:set_default_attr_ignore({
- [1] = {bold=true},
- [2] = {bold=true, foreground=Screen.colors.Blue}
+ {bold=true, foreground=Screen.colors.Blue}
})
end)
@@ -350,12 +349,13 @@ describe('New special highlight color attribute', function()
|
{1:neovim} tabbed^ |
~ |
- -- INSERT -- |
- ]],{
+ {4:-- INSERT --} |
+ ]],{
[1] = {background = Screen.colors.Yellow, foreground = Screen.colors.Red,
special = Screen.colors.Red},
[2] = {special = Screen.colors.Red, background = Screen.colors.Yellow},
- [3] = {foreground = Screen.colors.Red, special = Screen.colors.Red}
+ [3] = {foreground = Screen.colors.Red, special = Screen.colors.Red},
+ [4] = {bold = true}
})
end)