diff --git a/test/cli.zig b/test/cli.zig index 117c714a29ba295111171a67b331d07ad1f55488..9bc4a21c902e0a12ea0c3f0d024d4cb038544566 100644 --- a/test/cli.zig +++ b/test/cli.zig @@ -37,7 +37,7 @@ pub fn main() !void { }; for (test_fns) |testFn| { try fs.deleteTree(dir_path); - try fs.makeDir(dir_path); + try fs.cwd().makeDir(dir_path); try testFn(zig_exe, dir_path); } }