Repository: spark
Updated Branches:
  refs/heads/branch-2.3 036a04b29 -> 77cccc5e1


[MINOR][TEST] Fix class name for Pandas UDF tests

In 
https://github.com/apache/spark/commit/b2ce17b4c9fea58140a57ca1846b2689b15c0d61,
 I mistakenly renamed `VectorizedUDFTests` to `ScalarPandasUDF`. This PR fixes 
the mistake.

Existing tests.

Author: Li Jin <ice.xell...@gmail.com>

Closes #20489 from icexelloss/fix-scalar-udf-tests.

(cherry picked from commit caf30445632de6aec810309293499199e7a20892)
Signed-off-by: gatorsmile <gatorsm...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/77cccc5e
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/77cccc5e
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/77cccc5e

Branch: refs/heads/branch-2.3
Commit: 77cccc5e154b14f8a9cad829d7fd476e3b6405ce
Parents: 036a04b
Author: Li Jin <ice.xell...@gmail.com>
Authored: Tue Feb 6 12:30:04 2018 -0800
Committer: gatorsmile <gatorsm...@gmail.com>
Committed: Tue Feb 6 12:37:25 2018 -0800

----------------------------------------------------------------------
 python/pyspark/sql/tests.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/77cccc5e/python/pyspark/sql/tests.py
----------------------------------------------------------------------
diff --git a/python/pyspark/sql/tests.py b/python/pyspark/sql/tests.py
index 2577ed7..878d402 100644
--- a/python/pyspark/sql/tests.py
+++ b/python/pyspark/sql/tests.py
@@ -3740,7 +3740,7 @@ class PandasUDFTests(ReusedSQLTestCase):
 
 
 @unittest.skipIf(not _have_pandas or not _have_arrow, "Pandas or Arrow not 
installed")
-class VectorizedUDFTests(ReusedSQLTestCase):
+class ScalarPandasUDFTests(ReusedSQLTestCase):
 
     @classmethod
     def setUpClass(cls):
@@ -4253,7 +4253,7 @@ class VectorizedUDFTests(ReusedSQLTestCase):
 
 
 @unittest.skipIf(not _have_pandas or not _have_arrow, "Pandas or Arrow not 
installed")
-class GroupbyApplyTests(ReusedSQLTestCase):
+class GroupedMapPandasUDFTests(ReusedSQLTestCase):
 
     def assertFramesEqual(self, expected, result):
         msg = ("DataFrames are not equal: " +


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to