updated to correctly use the correctly configured temp directory

Former-commit-id: e4b08d63e8eee17f538a2e074dfdc394d446000b
This commit is contained in:
Jeremy Long
2014-03-08 06:20:32 -05:00
parent 5c787e0b69
commit 2c4a997c64

View File

@@ -73,7 +73,7 @@ public class FileUtilsTest {
@Test
public void testDelete() throws Exception {
File file = File.createTempFile("tmp", "deleteme");
File file = File.createTempFile("tmp", "deleteme", Settings.getTempDirectory());
if (!file.exists()) {
fail("Unable to create a temporary file.");
}