diff --git a/test/functional/autocmd/win_scrolled_resized_spec.lua b/test/functional/autocmd/win_scrolled_resized_spec.lua index 4876420552..a5e162d7b4 100644 --- a/test/functional/autocmd/win_scrolled_resized_spec.lua +++ b/test/functional/autocmd/win_scrolled_resized_spec.lua @@ -50,10 +50,12 @@ describe('WinResized', function() eq(0, eval('g:resized')) command('vsplit term://') + feed('') -- Add input to separate two RPC requests eq({ mode = 't', blocking = false }, api.nvim_get_mode()) eq(1, eval('g:resized')) command('split') + feed('') -- Add input to separate two RPC requests eq({ mode = 't', blocking = false }, api.nvim_get_mode()) eq(2, eval('g:resized')) end)