diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-09-19 10:01:00 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-09-19 10:01:00 +0200 |
commit | b7fc7ac6a115ce88df3cbbf6c0ad1a89791dc47c (patch) | |
tree | 106c83f9f9f0f90731e3fe63e9079b86b66e9542 /test/functional/lua/buffer_updates_spec.lua | |
parent | 4cc2a7af4bb577d9f3c0573b7293f477046f08ae (diff) | |
download | rneovim-b7fc7ac6a115ce88df3cbbf6c0ad1a89791dc47c.tar.gz rneovim-b7fc7ac6a115ce88df3cbbf6c0ad1a89791dc47c.tar.bz2 rneovim-b7fc7ac6a115ce88df3cbbf6c0ad1a89791dc47c.zip |
buffer updates: fix issues with "change" operator
Diffstat (limited to 'test/functional/lua/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/lua/buffer_updates_spec.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/lua/buffer_updates_spec.lua b/test/functional/lua/buffer_updates_spec.lua index 29bcca9035..805e880663 100644 --- a/test/functional/lua/buffer_updates_spec.lua +++ b/test/functional/lua/buffer_updates_spec.lua @@ -427,7 +427,7 @@ describe('lua: nvim_buf_attach on_bytes', function() feed "cc" check_events { - { "test1", "bytes", 1, 4, 1, 0, 1, 0, 15, 15, 0, 0, 0 }; + { "test1", "bytes", 1, 4, 0, 0, 0, 0, 15, 15, 0, 0, 0 }; } feed "<ESC>" @@ -436,7 +436,6 @@ describe('lua: nvim_buf_attach on_bytes', function() feed "c3j" check_events { { "test1", "bytes", 1, 4, 1, 0, 1, 3, 0, 48, 0, 0, 0 }; - { "test1", "bytes", 1, 5, 0, 0, 0, 4, 0, 0, 4, 0, 51 }; } end) end |