update cli test to new std.fs API

This commit is contained in:
Andrew Kelley 2020-03-03 15:58:14 -05:00
parent 4a67dd04c9
commit 55dfedff42
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -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);
}
}