diff options
author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-18 17:41:29 +0900 |
---|---|---|
committer | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2020-02-18 17:43:10 +0900 |
commit | e2ed8053bf722d4d111fac7dcdb07179fdea8752 (patch) | |
tree | f350874422f926114e15e2922ac2af34535fd039 /test/unit/helpers.lua | |
parent | a2efc9cf8b0fdf14b01156ba424145e1847f789c (diff) | |
download | rneovim-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/unit/helpers.lua')
-rw-r--r-- | test/unit/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/helpers.lua b/test/unit/helpers.lua index bacdc54416..a77a089763 100644 --- a/test/unit/helpers.lua +++ b/test/unit/helpers.lua @@ -13,7 +13,7 @@ local syscall = nil local check_cores = global_helpers.check_cores local dedent = global_helpers.dedent local neq = global_helpers.neq -local map = global_helpers.map +local map = global_helpers.tbl_map local eq = global_helpers.eq local trim = global_helpers.trim |