diff options
author | Lewis Russell <lewis6991@gmail.com> | 2024-01-12 11:51:31 +0000 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2024-01-12 12:04:20 +0000 |
commit | 56a2ec5c79d49421758319f1a8822cf30f1f8a5e (patch) | |
tree | f52e685be7cd043312b2cff10f809b931d2b96bf /test/functional/ui/screen.lua | |
parent | 7a259d01aed52134a1675e47d9054ccad7ef7cbb (diff) | |
download | rneovim-56a2ec5c79d49421758319f1a8822cf30f1f8a5e.tar.gz rneovim-56a2ec5c79d49421758319f1a8822cf30f1f8a5e.tar.bz2 rneovim-56a2ec5c79d49421758319f1a8822cf30f1f8a5e.zip |
test: use vim.inspect directly
Diffstat (limited to 'test/functional/ui/screen.lua')
-rw-r--r-- | test/functional/ui/screen.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/ui/screen.lua b/test/functional/ui/screen.lua index 07bb1c3258..dba70f27e4 100644 --- a/test/functional/ui/screen.lua +++ b/test/functional/ui/screen.lua @@ -82,7 +82,7 @@ local dedent = helpers.dedent local get_session = helpers.get_session local create_callindex = helpers.create_callindex -local inspect = require('vim.inspect') +local inspect = vim.inspect local function isempty(v) return type(v) == 'table' and next(v) == nil |