aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2024-01-15 21:57:11 +0000
committerLewis Russell <lewis6991@gmail.com>2024-01-17 10:10:17 +0000
commit587490217ec5bc7d3d06e045d4df46c0150ed7dc (patch)
tree03dd22e88d7707962a2a243c9e425524f5804f5e
parent13b83a3ea2f7c03fdd307eb746d784b41ee43da2 (diff)
downloadrneovim-587490217ec5bc7d3d06e045d4df46c0150ed7dc.tar.gz
rneovim-587490217ec5bc7d3d06e045d4df46c0150ed7dc.tar.bz2
rneovim-587490217ec5bc7d3d06e045d4df46c0150ed7dc.zip
test: fix mkdir()
-rw-r--r--test/helpers.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/helpers.lua b/test/helpers.lua
index 47d93d8206..24ccead8b2 100644
--- a/test/helpers.lua
+++ b/test/helpers.lua
@@ -769,10 +769,10 @@ function module.read_nvim_log(logfile, ci_rename)
end
--- @param path string
---- @return string
+--- @return boolean?
function module.mkdir(path)
-- 493 is 0755 in decimal
- return uv.fs_mkdir(path, 493)
+ return (uv.fs_mkdir(path, 493))
end
return module