diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-02-18 19:22:44 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-02-18 19:22:44 +0100 |
commit | 7973847d025aa7af431f1e92c1ee977ceb0eb7e5 (patch) | |
tree | 655024efab66b6851cf3f031473a7252f20eb367 /test/functional/helpers.lua | |
parent | e72ecdb7ca1face1d16e622824aa7bd3c98f5673 (diff) | |
download | rneovim-7973847d025aa7af431f1e92c1ee977ceb0eb7e5.tar.gz rneovim-7973847d025aa7af431f1e92c1ee977ceb0eb7e5.tar.bz2 rneovim-7973847d025aa7af431f1e92c1ee977ceb0eb7e5.zip |
test/util: remove eq_any()
It was added in the parent commit, but ended up not being used. And
I can't think of a case where it will be used: instead we would probably
want to generalize expect_msg_seq() if necessary.
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 3f3cdb56ba..a1da55ab1c 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -14,7 +14,6 @@ local check_cores = global_helpers.check_cores local check_logs = global_helpers.check_logs local neq = global_helpers.neq local eq = global_helpers.eq -local eq_any = global_helpers.eq_any local ok = global_helpers.ok local map = global_helpers.map local filter = global_helpers.filter @@ -733,7 +732,6 @@ local module = { curwinmeths = curwinmeths, dedent = dedent, eq = eq, - eq_any = eq_any, eval = nvim_eval, exc_exec = exc_exec, expect = expect, |