try to fix tests
This commit is contained in:
parent
7917e129c3
commit
afff183bbd
|
@ -513,7 +513,8 @@ public class TestingUtilities {
|
|||
}
|
||||
|
||||
public static String tempFolder(String name) throws IOException {
|
||||
if (new File("C:\\temp").exists()) {
|
||||
File tmp = new File("C:\\temp");
|
||||
if (tmp.exists() && tmp.isDirectory()) {
|
||||
String path = Utilities.path("C:\\temp", name);
|
||||
Utilities.createDirectory(path);
|
||||
return path;
|
||||
|
|
Loading…
Reference in New Issue