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 2013/09/21 00:39:21 UTC

svn commit: r1525163 - /pig/trunk/test/org/apache/pig/test/TestLogicalPlanBuilder.java

Author: daijy
Date: Fri Sep 20 22:39:20 2013
New Revision: 1525163

URL: http://svn.apache.org/r1525163
Log:
PIG-3199: Provide a method to retriever name of loader/storer in PigServer

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

Modified: pig/trunk/test/org/apache/pig/test/TestLogicalPlanBuilder.java
URL: http://svn.apache.org/viewvc/pig/trunk/test/org/apache/pig/test/TestLogicalPlanBuilder.java?rev=1525163&r1=1525162&r2=1525163&view=diff
==============================================================================
--- pig/trunk/test/org/apache/pig/test/TestLogicalPlanBuilder.java (original)
+++ pig/trunk/test/org/apache/pig/test/TestLogicalPlanBuilder.java Fri Sep 20 22:39:20 2013
@@ -2170,7 +2170,7 @@ public class TestLogicalPlanBuilder {
         assertEquals("StoreFunc must be PigStorageWithSchema", "org.apache.pig.test.PigStorageWithSchema", lData.getStoreFuncs().get(0));
         assertEquals("Number of sources must be 2", lData.getSources().size(), 2);
         assertTrue("Source must end with input.txt", lData.getSources().get(0).endsWith("input.txt"));
-        assertTrue("Source must end with input.txt", lData.getSinks().get(0).endsWith("output"));
+        assertTrue("Sink must end with output", lData.getSinks().get(0).endsWith("output"));
     }
     
     /**