diff options
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/api/window_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/display_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/listchars_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/legacy/statusline_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/options/cursorbind_spec.lua | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/api/window_spec.lua b/test/functional/api/window_spec.lua index 9aacac37bf..901d24327c 100644 --- a/test/functional/api/window_spec.lua +++ b/test/functional/api/window_spec.lua @@ -153,7 +153,7 @@ describe('API/win', function() [1] = {bold = true, foreground = Screen.colors.Blue}, -- NonText [2] = {background = Screen.colors.Grey90}, -- CursorLine [3] = {bold = true, reverse = true}, -- StatusLine - [4] = {reverse = true}, -- VertSplit, StatusLineNC + [4] = {reverse = true}, -- StatusLineNC }) screen:attach() command('set ruler') diff --git a/test/functional/legacy/display_spec.lua b/test/functional/legacy/display_spec.lua index ccc709cbf6..f0ffaf2c48 100644 --- a/test/functional/legacy/display_spec.lua +++ b/test/functional/legacy/display_spec.lua @@ -61,7 +61,7 @@ describe('display', function() screen:set_default_attr_ids({ [1] = {bold = true, foreground = Screen.colors.Blue}, -- NonText [2] = {bold = true, reverse = true}, -- StatusLine - [3] = {reverse = true}, -- VertSplit, StatusLineNC + [3] = {reverse = true}, -- StatusLineNC }) screen:attach() exec([[ diff --git a/test/functional/legacy/listchars_spec.lua b/test/functional/legacy/listchars_spec.lua index a94ec431d4..a9aa238d4e 100644 --- a/test/functional/legacy/listchars_spec.lua +++ b/test/functional/legacy/listchars_spec.lua @@ -105,7 +105,7 @@ describe("'listchars'", function() screen:set_default_attr_ids({ [1] = {bold = true, foreground = Screen.colors.Blue}, -- NonText [2] = {bold = true, reverse = true}, -- StatusLine - [3] = {reverse = true}, -- StatusLineNC, VertSplit + [3] = {reverse = true}, -- StatusLineNC [4] = {background = Screen.colors.Grey, foreground = Screen.colors.DarkBlue}, -- FoldColumn, SignColumn }) screen:attach() diff --git a/test/functional/legacy/statusline_spec.lua b/test/functional/legacy/statusline_spec.lua index 5eb46077ec..e2b30a7c82 100644 --- a/test/functional/legacy/statusline_spec.lua +++ b/test/functional/legacy/statusline_spec.lua @@ -18,7 +18,7 @@ describe('statusline', function() screen:set_default_attr_ids({ [1] = {bold = true, foreground = Screen.colors.Blue}, -- NonText [2] = {bold = true, reverse = true}, -- StatusLine - [3] = {reverse = true}, -- StatusLineNC, VertSplit + [3] = {reverse = true}, -- StatusLineNC }) exec([[ setlocal statusline=-%{mode()}- diff --git a/test/functional/options/cursorbind_spec.lua b/test/functional/options/cursorbind_spec.lua index fcb753451c..1a03ed099a 100644 --- a/test/functional/options/cursorbind_spec.lua +++ b/test/functional/options/cursorbind_spec.lua @@ -13,7 +13,7 @@ describe("'cursorbind'", function() screen:set_default_attr_ids({ [1] = {bold = true, foreground = Screen.colors.Blue}, -- NonText [2] = {bold = true, reverse = true}, -- StatusLine - [3] = {reverse = true}, -- StatusLineNC, VertSplit + [3] = {reverse = true}, -- StatusLineNC [4] = {background = Screen.colors.Grey90}, -- CursorLine, CursorColumn }) screen:attach() |