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/terminal/buffer_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/terminal/buffer_spec.lua')
-rw-r--r-- | test/functional/terminal/buffer_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/terminal/buffer_spec.lua b/test/functional/terminal/buffer_spec.lua index b6eb8ebdfd..8dc52a4d5e 100644 --- a/test/functional/terminal/buffer_spec.lua +++ b/test/functional/terminal/buffer_spec.lua @@ -322,7 +322,7 @@ describe(':terminal buffer', function() command('split') command('enew') local term = api.nvim_open_term(0, {}) - local termbuf = api.nvim_get_current_buf().id + local termbuf = api.nvim_get_current_buf() -- Test that autocommand buffer is associated with the terminal buffer, not the current buffer command('au TermRequest * let g:termbuf = +expand("<abuf>")') |