This is an automated email from the ASF dual-hosted git repository.

ruifengz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 4047efddd8f6 [SPARK-54033][GEO][SQL][FOLLOWUP] Fix Java test suite 
names for geospatial execution classes
4047efddd8f6 is described below

commit 4047efddd8f6105ff5dad2b970861890d07767d9
Author: Uros Bojanic <[email protected]>
AuthorDate: Fri Oct 31 15:53:08 2025 +0800

    [SPARK-54033][GEO][SQL][FOLLOWUP] Fix Java test suite names for geospatial 
execution classes
    
    ### What changes were proposed in this pull request?
    Following up on the original PR 
(https://github.com/apache/spark/pull/52737), this PR fixes Java test suite 
names.
    
    ### Why are the changes needed?
    Java test classes should be named same as the corresponding test suite 
files.
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    Existing tests suffice.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    No.
    
    Closes #52805 from uros-db/geo-server-suites.
    
    Authored-by: Uros Bojanic <[email protected]>
    Signed-off-by: Ruifeng Zheng <[email protected]>
---
 .../org/apache/spark/sql/catalyst/util/GeographyExecutionSuite.java     | 2 +-
 .../org/apache/spark/sql/catalyst/util/GeometryExecutionSuite.java      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeographyExecutionSuite.java
 
b/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeographyExecutionSuite.java
index f7a0a1929bc1..078ee2a3dbfb 100644
--- 
a/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeographyExecutionSuite.java
+++ 
b/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeographyExecutionSuite.java
@@ -29,7 +29,7 @@ import static org.junit.jupiter.api.Assertions.*;
 /**
  * Test suite for the Geography server-side execution class.
  */
-class GeographyExecutionTest {
+class GeographyExecutionSuite {
 
   // A sample Geography byte array for testing purposes, representing a 
POINT(1 2) with SRID 4326.
   private final byte[] testGeographyVal = new byte[] {
diff --git 
a/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeometryExecutionSuite.java
 
b/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeometryExecutionSuite.java
index be43596b7f5a..f51e4f82b51b 100644
--- 
a/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeometryExecutionSuite.java
+++ 
b/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/util/GeometryExecutionSuite.java
@@ -29,7 +29,7 @@ import static org.junit.jupiter.api.Assertions.*;
 /**
  * Test suite for the Geometry server-side execution class.
  */
-class GeometryExecutionTest {
+class GeometryExecutionSuite {
 
   // A sample Geometry byte array for testing purposes, representing a POINT(1 
2) with SRID 4326.
   private final byte[] testGeometryVal = new byte[] {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to