Author: ssc
Date: Tue Jun 14 06:53:12 2011
New Revision: 1135390

URL: http://svn.apache.org/viewvc?rev=1135390&view=rev
Log:
better tmp path handling in DistributedRowMatrix test

Modified:
    
mahout/trunk/core/src/test/java/org/apache/mahout/math/hadoop/TestDistributedRowMatrix.java

Modified: 
mahout/trunk/core/src/test/java/org/apache/mahout/math/hadoop/TestDistributedRowMatrix.java
URL: 
http://svn.apache.org/viewvc/mahout/trunk/core/src/test/java/org/apache/mahout/math/hadoop/TestDistributedRowMatrix.java?rev=1135390&r1=1135389&r2=1135390&view=diff
==============================================================================
--- 
mahout/trunk/core/src/test/java/org/apache/mahout/math/hadoop/TestDistributedRowMatrix.java
 (original)
+++ 
mahout/trunk/core/src/test/java/org/apache/mahout/math/hadoop/TestDistributedRowMatrix.java
 Tue Jun 14 06:53:12 2011
@@ -69,7 +69,10 @@ public final class TestDistributedRowMat
   public void testTranspose() throws Exception {
     DistributedRowMatrix m = randomDistributedMatrix(10, 9, 5, 4, 1.0, false);
     DistributedRowMatrix mt = m.transpose();
-    mt.setOutputTempPathString(new Path(m.getOutputTempPath().getParent(), 
"/tmpOutTranspose").toString());
+
+    Path tmpPath = getTestTempDirPath();
+    m.setOutputTempPathString(tmpPath.toString());
+    mt.setOutputTempPathString(new Path(tmpPath, 
"/tmpOutTranspose").toString());
     DistributedRowMatrix mtt = mt.transpose();
     assertEquals(m, mtt, EPSILON);
   }


Reply via email to