]> source.dussan.org Git - poi.git/commitdiff
Use TempFile to avoid problems with temporary directories in Maven builds
authorDominik Stadler <centic@apache.org>
Mon, 20 May 2019 17:35:54 +0000 (17:35 +0000)
committerDominik Stadler <centic@apache.org>
Mon, 20 May 2019 17:35:54 +0000 (17:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1859575 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/poifs/filesystem/TestFileMagic.java

index 600a316796d6725ecea2c6c8971d5c921b8a0e8c..3022abe6fd6778ee49fb2245e9a3e309da53ba20 100644 (file)
@@ -19,6 +19,7 @@ package org.apache.poi.poifs.filesystem;
 
 import org.apache.commons.codec.Charsets;
 import org.apache.poi.POIDataSamples;
+import org.apache.poi.util.TempFile;
 import org.junit.Test;
 
 import java.io.BufferedInputStream;
@@ -108,7 +109,7 @@ public class TestFileMagic {
         // having a file shorter than 8 bytes previously caused an exception
         byte[] data = new byte[] { -1, -40, -1, -32, 0 };
 
-        File file = File.createTempFile("TestFileMagic", ".bin");
+        File file = TempFile.createTempFile("TestFileMagic", ".bin");
         try {
             try (FileOutputStream fos = new FileOutputStream(file)) {
                 fos.write(data);
@@ -124,7 +125,7 @@ public class TestFileMagic {
     public void testMarkRequired() throws IOException {
         byte[] data = new byte[] { -1, -40, -1, -32, 0 };
 
-        File file = File.createTempFile("TestFileMagic", ".bin");
+        File file = TempFile.createTempFile("TestFileMagic", ".bin");
         try {
             try (FileOutputStream fos = new FileOutputStream(file)) {
                 fos.write(data);