aboutsummaryrefslogtreecommitdiff
path: root/test/functional/terminal/testutil.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-04-11 08:51:06 +0800
committerGitHub <noreply@github.com>2024-04-11 08:51:06 +0800
commit4528a69c8772a5fe182fb293b929dfcfad112abc (patch)
tree3ba275d5be425811b1e82ec5f956758d4cabd08d /test/functional/terminal/testutil.lua
parent509c053161c0495ac41cf12343089059afb4e813 (diff)
downloadrneovim-4528a69c8772a5fe182fb293b929dfcfad112abc.tar.gz
rneovim-4528a69c8772a5fe182fb293b929dfcfad112abc.tar.bz2
rneovim-4528a69c8772a5fe182fb293b929dfcfad112abc.zip
test: remove unnecessary nil argument to testutil (#28270)
Diffstat (limited to 'test/functional/terminal/testutil.lua')
-rw-r--r--test/functional/terminal/testutil.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/terminal/testutil.lua b/test/functional/terminal/testutil.lua
index 878b3bf409..c5e5ed5e96 100644
--- a/test/functional/terminal/testutil.lua
+++ b/test/functional/terminal/testutil.lua
@@ -1,7 +1,7 @@
-- To test tui/input.c, this module spawns `nvim` inside :terminal and sends
--- bytes via jobsend(). Note: the functional/t.lua test-session methods
+-- bytes via jobsend(). Note: the functional/testutil.lua test-session methods
-- operate on the _host_ session, _not_ the child session.
-local t = require('test.functional.testutil')(nil)
+local t = require('test.functional.testutil')()
local Screen = require('test.functional.ui.screen')
local testprg = t.testprg
local exec_lua = t.exec_lua