From f65a751d8249531c94b1aa7b1062477f9c516c8a Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 2 Jul 2018 20:47:28 +0200 Subject: test: nvim_buf_attach: reduce delay This test is mostly a demo/reference for: https://github.com/neovim/neovim/issues/8634#issuecomment-400940467 so let's not pay a 1s penalty. --- test/functional/api/buffer_updates_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/api/buffer_updates_spec.lua b/test/functional/api/buffer_updates_spec.lua index 2e3844e24e..e5cc747f8a 100644 --- a/test/functional/api/buffer_updates_spec.lua +++ b/test/functional/api/buffer_updates_spec.lua @@ -743,7 +743,7 @@ describe('API: buffer events:', function() it('nvim_buf_attach returns response after delay #8634', function() clear() - sleep(1000) + sleep(250) -- response eq(true, helpers.request('nvim_buf_attach', 0, false, {})) -- notification -- cgit