Skip to content

Commit 0e46820

Browse files
committed
Try fix Windows CI
1 parent 7e9a652 commit 0e46820

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler/test/dotty/tools/io/ZipArchiveTest.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ class ZipArchiveTest {
8282
}
8383
finally {
8484
archive.close()
85-
Files.delete(jar)
85+
// The following results in IOException on Windows (file in use by another process).
86+
// As jar is a temp file, it will be deleted automatically.
87+
// Files.delete(jar)
8688
}
8789
}
8890

0 commit comments

Comments
 (0)