diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-02-12 21:41:21 +0100 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-05-23 22:07:27 +0200 |
commit | 5aa8af7cdb5a2a8ed2cef02e6d7a0b9a2c714140 (patch) | |
tree | ff2fd7c49f58b1871844158999613d304bef3034 /test/functional/api/buffer_updates_spec.lua | |
parent | 2106bada5bbd6de4729a8714d011e0eca61cee35 (diff) | |
download | rneovim-5aa8af7cdb5a2a8ed2cef02e6d7a0b9a2c714140.tar.gz rneovim-5aa8af7cdb5a2a8ed2cef02e6d7a0b9a2c714140.tar.bz2 rneovim-5aa8af7cdb5a2a8ed2cef02e6d7a0b9a2c714140.zip |
Increase sendkeys timeout
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 c3a1754cf3..cb20184a50 100644 --- a/test/functional/api/buffer_updates_spec.lua +++ b/test/functional/api/buffer_updates_spec.lua @@ -20,7 +20,7 @@ local function sendkeys(keys) -- give neovim some time to process msgpack requests before possibly sending -- more key presses - otherwise they all pile up in the queue and get -- processed at once - local ntime = os.clock() + 0.01 + local ntime = os.clock() + 0.1 repeat until os.clock() > ntime end |