From 587490217ec5bc7d3d06e045d4df46c0150ed7dc Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Mon, 15 Jan 2024 21:57:11 +0000 Subject: test: fix mkdir() --- test/helpers.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/helpers.lua') 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 -- cgit