diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-13 00:50:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-13 00:50:52 +0200 |
commit | 47310274478b15b546fbf0dc95535417aa33a582 (patch) | |
tree | 0dba7a3e13532e639517f8632cfa512ec08f6935 /test/functional/ex_cmds/menu_spec.lua | |
parent | 108eb4201f193441c19073ea2bb7780086c46385 (diff) | |
download | rneovim-47310274478b15b546fbf0dc95535417aa33a582.tar.gz rneovim-47310274478b15b546fbf0dc95535417aa33a582.tar.bz2 rneovim-47310274478b15b546fbf0dc95535417aa33a582.zip |
tests: use vim.inspect (#10485)
The inspect modules is vendored as `vim.inspect`, and therefore it makes
sense to use this in tests also.
Ref: https://github.com/neovim/neovim/issues/6580
Ref: https://github.com/neovim/neovim/commit/bb3aa824b
Diffstat (limited to 'test/functional/ex_cmds/menu_spec.lua')
-rw-r--r-- | test/functional/ex_cmds/menu_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ex_cmds/menu_spec.lua b/test/functional/ex_cmds/menu_spec.lua index 2309e949c0..0cd32df27c 100644 --- a/test/functional/ex_cmds/menu_spec.lua +++ b/test/functional/ex_cmds/menu_spec.lua @@ -83,7 +83,7 @@ describe('menu_get', function() it("path='', modes='a'", function() local m = funcs.menu_get("","a"); -- HINT: To print the expected table and regenerate the tests: - -- print(require('inspect')(m)) + -- print(require('vim.inspect')(m)) local expected = { { shortcut = "T", |