diff options
author | Ashkan Kiani <ashkan.k.kiani@gmail.com> | 2019-12-27 03:20:17 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-12-27 12:20:17 +0100 |
commit | 52566dd780a0ac5c584213111e6f5294874195a9 (patch) | |
tree | 5e920f13fde9da53c6965a433b1fc2f32c12048b | |
parent | b0196586debd55b9b8be62966084eee12bf0e4ad (diff) | |
download | rneovim-52566dd780a0ac5c584213111e6f5294874195a9.tar.gz rneovim-52566dd780a0ac5c584213111e6f5294874195a9.tar.bz2 rneovim-52566dd780a0ac5c584213111e6f5294874195a9.zip |
LSP: Fix flaky test #11618
-rw-r--r-- | test/functional/plugin/lsp/lsp_spec.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/plugin/lsp/lsp_spec.lua b/test/functional/plugin/lsp/lsp_spec.lua index c38c9b72ce..f10fd5c185 100644 --- a/test/functional/plugin/lsp/lsp_spec.lua +++ b/test/functional/plugin/lsp/lsp_spec.lua @@ -139,7 +139,6 @@ describe('Language Client API', function() eq(false, exec_lua("return lsp.get_client_by_id(TEST_RPC_CLIENT_ID) == nil")) eq(false, exec_lua("return lsp.get_client_by_id(TEST_RPC_CLIENT_ID).is_stopped()")) exec_lua("return lsp.get_client_by_id(TEST_RPC_CLIENT_ID).stop()") - eq(false, exec_lua("return lsp.get_client_by_id(TEST_RPC_CLIENT_ID).is_stopped()")) for _ = 1, 20 do helpers.sleep(10) if exec_lua("return #lsp.get_active_clients()") == 0 then |