diff options
author | Lewis Russell <me@lewisr.dev> | 2022-05-17 14:25:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 14:25:56 +0100 |
commit | 8a73e60eb97a0402caf57986ece1e87b7365ae00 (patch) | |
tree | 9beeb8d39f4a1e937d95cf76273ef7e316a3aa7f /test/functional/lua/vim_spec.lua | |
parent | 5c41165c8e89356bdb7d1b5835d1f79725b62d2c (diff) | |
download | rneovim-8a73e60eb97a0402caf57986ece1e87b7365ae00.tar.gz rneovim-8a73e60eb97a0402caf57986ece1e87b7365ae00.tar.bz2 rneovim-8a73e60eb97a0402caf57986ece1e87b7365ae00.zip |
fixup: update test/functional/lua/vim_spec.lua
Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'test/functional/lua/vim_spec.lua')
-rw-r--r-- | test/functional/lua/vim_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/vim_spec.lua b/test/functional/lua/vim_spec.lua index 1b9bdd147c..fd05e6ec0b 100644 --- a/test/functional/lua/vim_spec.lua +++ b/test/functional/lua/vim_spec.lua @@ -794,7 +794,7 @@ describe('lua stdlib', function() pcall_err(exec_lua, "vim.fn.nvim_get_current_line()")) end) - it('vim.fn can be called in fast events (if function is allowed)', function() + it('vim.fn is allowed in "fast" context by some functions #18306', function() exec_lua([[ local timer = vim.loop.new_timer() timer:start(0, 0, function() |