tmp files for tests should be temporary ... and not created in the current working directory

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@668771 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2008-06-17 17:56:20 +00:00
parent e8376f4d8d
commit 200f1ddd7c
1 changed files with 2 additions and 3 deletions

View File

@ -36,8 +36,6 @@ public class CacheHeaderTest extends CacheHeaderTestBase {
return "solrconfig.xml";
}
protected static final String FILENAME = "cacheheadertest.csv";
protected static final String CHARSET = "UTF-8";
protected static final String CONTENTS = "id\n100\n101\n102";
@ -234,7 +232,8 @@ public class CacheHeaderTest extends CacheHeaderTestBase {
protected File makeFile(String contents, String charset) {
try {
File f=new File(FILENAME);
File f = File.createTempFile(getClass().getName(),"csv");
f.deleteOnExit();
Writer out = new OutputStreamWriter(new FileOutputStream(f),
charset);
out.write(contents);