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/eval | |
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/eval')
-rw-r--r-- | test/unit/eval/typval_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/eval/typval_spec.lua b/test/unit/eval/typval_spec.lua index 4535d6a0b2..1651eb9bcc 100644 --- a/test/unit/eval/typval_spec.lua +++ b/test/unit/eval/typval_spec.lua @@ -14,7 +14,7 @@ local cimport = helpers.cimport local to_cstr = helpers.to_cstr local alloc_log_new = helpers.alloc_log_new local concat_tables = helpers.concat_tables -local map = helpers.map +local map = helpers.tbl_map local a = eval_helpers.alloc_logging_helpers local int = eval_helpers.int |