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

mgrund pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark-connect-go.git


The following commit(s) were added to refs/heads/master by this push:
     new defb852  [MINOR] Fix out-of-default-directory build
defb852 is described below

commit defb8525088150f9f328136a35fa7c5f64fe2733
Author: Martin Grund <martin.gr...@databricks.com>
AuthorDate: Mon Jun 9 09:46:24 2025 -0700

    [MINOR] Fix out-of-default-directory build
    
    ### What changes were proposed in this pull request?
    Fixing a test assertion to deal with out of source tree builds.
    
    ### Why are the changes needed?
    Release and CI
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    Existing tests
    
    Closes #146 from grundprinzip/rc-build-2.
    
    Authored-by: Martin Grund <martin.gr...@databricks.com>
    Signed-off-by: Martin Grund <martin.gr...@databricks.com>
---
 spark/sparkerrors/errors_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spark/sparkerrors/errors_test.go b/spark/sparkerrors/errors_test.go
index 0e867aa..f519cc4 100644
--- a/spark/sparkerrors/errors_test.go
+++ b/spark/sparkerrors/errors_test.go
@@ -54,7 +54,7 @@ func TestStackTracePrint(t *testing.T) {
        err := WithType(assert.AnError, ConnectionError)
        errorString := fmt.Sprintf("%+v", err)
        t.Log(errorString)
-       assert.Contains(t, errorString, 
"spark-connect-go/spark/sparkerrors/errors_test.go")
+       assert.Contains(t, errorString, "spark/sparkerrors/errors_test.go")
 }
 
 func TestErrorDetailsExtractionFromGRPCStatus(t *testing.T) {


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

Reply via email to