diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-02-18 23:38:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-18 23:38:52 -0800 |
commit | e8f160c82f8d4809320699630e07a7e5f4537e77 (patch) | |
tree | d4b6c45adac6dc5cffe3623c298da7fdd673fc08 /test/functional/helpers.lua | |
parent | 521b79c0f85625f99ff626935484a1225360f820 (diff) | |
parent | f3d4ddd0f8b654d58fb4653d88ac7f652e3ad364 (diff) | |
download | rneovim-e8f160c82f8d4809320699630e07a7e5f4537e77.tar.gz rneovim-e8f160c82f8d4809320699630e07a7e5f4537e77.tar.bz2 rneovim-e8f160c82f8d4809320699630e07a7e5f4537e77.zip |
Merge #11895 'lsp: fix textDocument/completion handling'
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 53c4d140b6..e8435cd3b7 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -15,9 +15,9 @@ local check_cores = global_helpers.check_cores local check_logs = global_helpers.check_logs local dedent = global_helpers.dedent local eq = global_helpers.eq -local filter = global_helpers.filter +local filter = global_helpers.tbl_filter local is_os = global_helpers.is_os -local map = global_helpers.map +local map = global_helpers.tbl_map local ok = global_helpers.ok local sleep = global_helpers.sleep local tbl_contains = global_helpers.tbl_contains |