aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorHirokazu Hata <h.hata.ai.t@gmail.com>2020-02-18 17:41:29 +0900
committerHirokazu Hata <h.hata.ai.t@gmail.com>2020-02-18 17:43:10 +0900
commite2ed8053bf722d4d111fac7dcdb07179fdea8752 (patch)
treef350874422f926114e15e2922ac2af34535fd039 /test/functional/helpers.lua
parenta2efc9cf8b0fdf14b01156ba424145e1847f789c (diff)
downloadrneovim-e2ed8053bf722d4d111fac7dcdb07179fdea8752.tar.gz
rneovim-e2ed8053bf722d4d111fac7dcdb07179fdea8752.tar.bz2
rneovim-e2ed8053bf722d4d111fac7dcdb07179fdea8752.zip
lua: move test helper function, map and filter, to vim.shared module
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua4
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