Skip to content

Commit defb852

Browse files
committed
[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.grund@databricks.com> Signed-off-by: Martin Grund <martin.grund@databricks.com>
1 parent a530ab2 commit defb852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/sparkerrors/errors_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func TestStackTracePrint(t *testing.T) {
5454
err := WithType(assert.AnError, ConnectionError)
5555
errorString := fmt.Sprintf("%+v", err)
5656
t.Log(errorString)
57-
assert.Contains(t, errorString, "spark-connect-go/spark/sparkerrors/errors_test.go")
57+
assert.Contains(t, errorString, "spark/sparkerrors/errors_test.go")
5858
}
5959

6060
func TestErrorDetailsExtractionFromGRPCStatus(t *testing.T) {

0 commit comments

Comments
 (0)