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 2016/05/24 19:28:41 UTC

svn commit: r1745398 - /pig/trunk/test/org/apache/pig/test/TestLoad.java

Author: daijy
Date: Tue May 24 19:28:41 2016
New Revision: 1745398

URL: http://svn.apache.org/viewvc?rev=1745398&view=rev
Log:
PIG-4892: removing /tmp/output before UT (PIG-4892-TestLoad.patch)

Modified:
    pig/trunk/test/org/apache/pig/test/TestLoad.java

Modified: pig/trunk/test/org/apache/pig/test/TestLoad.java
URL: http://svn.apache.org/viewvc/pig/trunk/test/org/apache/pig/test/TestLoad.java?rev=1745398&r1=1745397&r2=1745398&view=diff
==============================================================================
--- pig/trunk/test/org/apache/pig/test/TestLoad.java (original)
+++ pig/trunk/test/org/apache/pig/test/TestLoad.java Tue May 24 19:28:41 2016
@@ -250,7 +250,7 @@ public class TestLoad {
     public void testNonDfsLocation() throws Exception {
         String nonDfsUrl = "har:///user/foo/f.har";
         String query = "a = load '" + nonDfsUrl + "' using PigStorage('\t','-noschema');" +
-                       "store a into 'output';";
+                       "store a into 'pigoutput';";
         LogicalPlan lp = Util.buildLp(servers[1], query);
         LOLoad load = (LOLoad) lp.getSources().get(0);
         nonDfsUrl = nonDfsUrl.replaceFirst("/$", "");