Enable passing 'Dir.rename directories' fs test on Windows

Looks like d3f87f8ac0 fixed the standard cases of dir renaming, but the edge cases (renaming onto an existing empty/non-empty directory) are still behaving differently than on non-Windows.
This commit is contained in:
Ryan Liptak
2022-04-12 17:13:59 -07:00
committed by Jakub Konka
parent aaac8eae68
commit 9c509f1526

View File

@@ -434,9 +434,6 @@ test "Dir.rename files" {
}
test "Dir.rename directories" {
// TODO: Fix on Windows, see https://github.com/ziglang/zig/issues/6364
if (builtin.os.tag == .windows) return error.SkipZigTest;
var tmp_dir = tmpDir(.{});
defer tmp_dir.cleanup();