summaryrefslogtreecommitdiffstatshomepage
path: root/test/testutil.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2026-01-21 15:11:47 +0800
committerGitHub <noreply@github.com>2026-01-21 15:11:47 +0800
commit1883fe39bdee47a246a913ba021237d1893aaa90 (patch)
tree84b15cb4c4f04bcf3117d8a3a44895a3ecf25c2c /test/testutil.lua
parentc556972ae10d0e61337dbc804a4a0af4e390f98e (diff)
test: fix some type warnings (#37483)
Diffstat (limited to 'test/testutil.lua')
-rw-r--r--test/testutil.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testutil.lua b/test/testutil.lua
index fb018a3e9e..7a4a9b9aac 100644
--- a/test/testutil.lua
+++ b/test/testutil.lua
@@ -49,7 +49,7 @@ function M.fix_slashes(obj)
end
--- @param ... string|string[]
---- @return string
+--- @return string[]
function M.argss_to_cmd(...)
local cmd = {} --- @type string[]
for i = 1, select('#', ...) do