diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-01-16 13:26:21 +0000 |
---|---|---|
committer | Lewis Russell <me@lewisr.dev> | 2024-01-16 19:11:49 +0000 |
commit | 8f02ae82e203920b472d17e75a61763f3a409a7b (patch) | |
tree | 4e6379218c7d53d1ba512a2464ec0237365a7bbb /test/functional/api/buffer_updates_spec.lua | |
parent | 91dc04a5e12a3d0c5be56768ded5971bc80e6f8e (diff) | |
download | rneovim-8f02ae82e203920b472d17e75a61763f3a409a7b.tar.gz rneovim-8f02ae82e203920b472d17e75a61763f3a409a7b.tar.bz2 rneovim-8f02ae82e203920b472d17e75a61763f3a409a7b.zip |
test: use integers for API Buffer/Window/Tabpage EXT types
Diffstat (limited to 'test/functional/api/buffer_updates_spec.lua')
-rw-r--r-- | test/functional/api/buffer_updates_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/api/buffer_updates_spec.lua b/test/functional/api/buffer_updates_spec.lua index 40fa129772..d68c60e54c 100644 --- a/test/functional/api/buffer_updates_spec.lua +++ b/test/functional/api/buffer_updates_spec.lua @@ -820,7 +820,7 @@ describe('API: buffer events:', function() [1] = 'notification', [2] = 'nvim_buf_changedtick_event', [3] = { - [1] = { id = 1 }, + [1] = 1, [2] = 2, }, }, next_msg()) |