| author | |
| committer | |
| log | 016e87e7efa0311fe360ca2f0ba2a6fa583b3fda |
| tree | 055392dbdf718e7eb2a9d34a0bcdb2c1a4e48d22 |
| parent | 5490021ab7d97425a44b78e218b5462f960d9c9d |
1 files changed, 2 insertions(+), 1 deletions(-)
lib/std/fs/test.zig+2-1| ... | ... | @@ -1161,7 +1161,8 @@ test "makepath existing directories" { |
| 1161 | 1161 | defer tmp.cleanup(); |
| 1162 | 1162 | |
| 1163 | 1163 | try tmp.dir.makeDir("A"); |
| 1164 | const tmpA = try tmp.dir.openDir("A", .{}); | |
| 1164 | var tmpA = try tmp.dir.openDir("A", .{}); | |
| 1165 | defer tmpA.close(); | |
| 1165 | 1166 | try tmpA.makeDir("B"); |
| 1166 | 1167 | |
| 1167 | 1168 | const testPath = "A" ++ fs.path.sep_str ++ "B" ++ fs.path.sep_str ++ "C"; |