diff options
| author | LeRoyce Pearson <leroycepearson@geemili.xyz> | 2020-03-23 21:39:10 -0600 |
|---|---|---|
| committer | LeRoyce Pearson <leroycepearson@geemili.xyz> | 2020-03-23 21:39:16 -0600 |
| commit | 113b217593ab5b0369b76251b99a195f361cc220 (patch) | |
| tree | 9aa8e8d78304afcc51bef0ace49bb5b3017804f6 /lib/std/fs | |
| parent | 0b93932a2103b178d3ab5235c837df14173ed38c (diff) | |
| parent | dc44fe053c609f389e375f6857f96b6bb3794897 (diff) | |
| download | zig-113b217593ab5b0369b76251b99a195f361cc220.tar.gz zig-113b217593ab5b0369b76251b99a195f361cc220.zip | |
Merge branch 'master' into feature-file-locks
Diffstat (limited to 'lib/std/fs')
| -rw-r--r-- | lib/std/fs/watch.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fs/watch.zig b/lib/std/fs/watch.zig index 3180240a72..96fe1538e4 100644 --- a/lib/std/fs/watch.zig +++ b/lib/std/fs/watch.zig @@ -619,7 +619,7 @@ test "write a file, watch it, write it again" { if (true) return error.SkipZigTest; try fs.cwd().makePath(test_tmp_dir); - defer os.deleteTree(test_tmp_dir) catch {}; + defer fs.cwd().deleteTree(test_tmp_dir) catch {}; const allocator = std.heap.page_allocator; return testFsWatch(&allocator); |
