commit 587490217ec5bc7d3d06e045d4df46c0150ed7dc parent 13b83a3ea2f7c03fdd307eb746d784b41ee43da2 Author: Lewis Russell <lewis6991@gmail.com> Date: Mon, 15 Jan 2024 21:57:11 +0000 test: fix mkdir() Diffstat:
| M | test/helpers.lua | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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