You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by da...@apache.org on 2014/10/24 21:52:18 UTC

svn commit: r1634127 - /pig/branches/branch-0.14/test/org/apache/pig/tez/TestTezAutoParallelism.java

Author: daijy
Date: Fri Oct 24 19:52:17 2014
New Revision: 1634127

URL: http://svn.apache.org/r1634127
Log:
PIG-3456: Reduce threadlocal conf access in backend for each record (PIG-3456-fixtest.patch)

Modified:
    pig/branches/branch-0.14/test/org/apache/pig/tez/TestTezAutoParallelism.java

Modified: pig/branches/branch-0.14/test/org/apache/pig/tez/TestTezAutoParallelism.java
URL: http://svn.apache.org/viewvc/pig/branches/branch-0.14/test/org/apache/pig/tez/TestTezAutoParallelism.java?rev=1634127&r1=1634126&r2=1634127&view=diff
==============================================================================
--- pig/branches/branch-0.14/test/org/apache/pig/tez/TestTezAutoParallelism.java (original)
+++ pig/branches/branch-0.14/test/org/apache/pig/tez/TestTezAutoParallelism.java Fri Oct 24 19:52:17 2014
@@ -225,6 +225,6 @@ public class TestTezAutoParallelism {
                 return false;
             }
         });
-        assertEquals(files.length, 5);
+        assertEquals(files.length, 4);
     }
 }