diff options
Diffstat (limited to 'test/functional/ui')
-rw-r--r-- | test/functional/ui/cursor_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/ui/embed_spec.lua | 9 |
2 files changed, 4 insertions, 7 deletions
diff --git a/test/functional/ui/cursor_spec.lua b/test/functional/ui/cursor_spec.lua index 2b8dc0fe19..7f4d167c41 100644 --- a/test/functional/ui/cursor_spec.lua +++ b/test/functional/ui/cursor_spec.lua @@ -213,7 +213,7 @@ describe('ui/cursor', function() m.hl_id = 64 m.attr = {background = Screen.colors.DarkGray} end - if m.id_lm then m.id_lm = 69 end + if m.id_lm then m.id_lm = 70 end end -- Assert the new expectation. diff --git a/test/functional/ui/embed_spec.lua b/test/functional/ui/embed_spec.lua index 072c9e89ce..9d7934a8c6 100644 --- a/test/functional/ui/embed_spec.lua +++ b/test/functional/ui/embed_spec.lua @@ -29,9 +29,6 @@ local function test_embed(ext_linegrid) [6] = {foreground = Screen.colors.NvimDarkGrey3, background = Screen.colors.NvimLightGrey1}; [7] = {foreground = Screen.colors.NvimDarkRed}; [8] = {foreground = Screen.colors.NvimDarkCyan}; - [9] = {foreground = Screen.colors.NvimLightGrey3, background = Screen.colors.NvimDarkGrey1}; - [10] = {foreground = Screen.colors.NvimLightRed}; - [11] = {foreground = Screen.colors.NvimLightCyan}; }) end @@ -60,11 +57,11 @@ local function test_embed(ext_linegrid) startup('--cmd', 'echoerr "foo"', '--cmd', 'color default', '--cmd', 'echoerr "bar"') screen:expect([[ |*3 - {9: }| + {6: }| {7:Error detected while processing pre-vimrc command line:} | {7:foo} | - {10:bar} | - {11:Press ENTER or type command to continue}^ | + {7:bar} | + {8:Press ENTER or type command to continue}^ | ]]) end) |