diff options
Diffstat (limited to 'test/helpers.lua')
-rw-r--r-- | test/helpers.lua | 4 |
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 |