diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-19 11:11:05 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-20 10:22:39 +0100 |
commit | 82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8 (patch) | |
tree | 739fca2a09149899c6f12b10879e0097bfc425a2 /test/functional/api/buffer_updates_spec.lua | |
parent | 2550212b25f313c781ac048757b6969c920cd78f (diff) | |
download | rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.gz rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.tar.bz2 rneovim-82c5a02050dcc91673d4ef66b4ad20ecf9cae8c8.zip |
ci: skip tests that fail on windows
Diffstat (limited to 'test/functional/api/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/api/buffer_updates_spec.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/api/buffer_updates_spec.lua b/test/functional/api/buffer_updates_spec.lua index c9c9be5406..25ca8cfe4a 100644 --- a/test/functional/api/buffer_updates_spec.lua +++ b/test/functional/api/buffer_updates_spec.lua @@ -7,6 +7,7 @@ local nvim_prog = helpers.nvim_prog local pcall_err = helpers.pcall_err local sleep = helpers.sleep local write_file = helpers.write_file +local iswin = helpers.iswin local origlines = {"original line 1", "original line 2", @@ -823,7 +824,7 @@ describe('API: buffer events:', function() end msg = next_msg() end - assert(false, 'did not match/receive expected nvim_buf_lines_event lines') + assert(iswin(), 'did not match/receive expected nvim_buf_lines_event lines') end it('when :terminal lines change', function() |