PIG-5406: TestJoinLocal imports org.python.google.common.collect.Lists instead of org.google.common.collect.Lists (rohini)

git-svn-id: https://svn.apache.org/repos/asf/pig/trunk@1903527 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/CHANGES.txt b/CHANGES.txt
index b4e5550..d942bda 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -112,6 +112,8 @@
  
 BUG FIXES
 
+PIG-5406: TestJoinLocal imports org.python.google.common.collect.Lists instead of org.google.common.collect.Lists (rohini)
+
 PIG-5425: Pig 0.15 and later don't set context signature correctly (jtolar via rohini)
 
 PIG-5413: [spark] TestStreaming.testInputCacheSpecs failing with "File script1.pl was already registered" (knoguchi)
diff --git a/test/org/apache/pig/test/TestJoinLocal.java b/test/org/apache/pig/test/TestJoinLocal.java
index 67603cb..e4dab3c 100644
--- a/test/org/apache/pig/test/TestJoinLocal.java
+++ b/test/org/apache/pig/test/TestJoinLocal.java
@@ -41,7 +41,8 @@
 import org.apache.pig.newplan.logical.relational.LogicalPlan;
 import org.junit.Before;
 import org.junit.Test;
-import org.python.google.common.collect.Sets;
+
+import com.google.common.collect.Sets;
 
 public class TestJoinLocal extends TestJoinBase {