Author: billie
Date: Tue May  1 15:17:45 2012
New Revision: 1332695

URL: http://svn.apache.org/viewvc?rev=1332695&view=rev
Log:
ACCUMULO-568 use relative path instead of ACCUMULO_HOME in test

Modified:
    
accumulo/trunk/core/src/test/java/org/apache/accumulo/core/client/mapreduce/AccumuloFileOutputFormatTest.java

Modified: 
accumulo/trunk/core/src/test/java/org/apache/accumulo/core/client/mapreduce/AccumuloFileOutputFormatTest.java
URL: 
http://svn.apache.org/viewvc/accumulo/trunk/core/src/test/java/org/apache/accumulo/core/client/mapreduce/AccumuloFileOutputFormatTest.java?rev=1332695&r1=1332694&r2=1332695&view=diff
==============================================================================
--- 
accumulo/trunk/core/src/test/java/org/apache/accumulo/core/client/mapreduce/AccumuloFileOutputFormatTest.java
 (original)
+++ 
accumulo/trunk/core/src/test/java/org/apache/accumulo/core/client/mapreduce/AccumuloFileOutputFormatTest.java
 Tue May  1 15:17:45 2012
@@ -44,7 +44,7 @@ public class AccumuloFileOutputFormatTes
   public void setup() {
     job = ContextFactory.createJobContext();
     
-    Path file = new Path(System.getenv("ACCUMULO_HOME") + "/target/");
+    Path file = new Path("target/");
     f = new Path(file, "_temporary");
     job.getConfiguration().set("mapred.output.dir", file.toString());
     


Reply via email to