Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 11cc250

Browse files
author
Sun Cao
committedJun 17, 2025·
Update DeltaSharingSuite.scala
1 parent 25d4cfb commit 11cc250

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎spark/src/test/scala/io/delta/sharing/spark/DeltaSharingSuite.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -568,17 +568,14 @@ class DeltaSharingSuite extends QueryTest with SharedSparkSession with DeltaShar
568568
}
569569
}
570570

571-
test("spark read limit") {
571+
integrationTest("spark read limit") {
572572
val spark = SparkSession.active
573573
spark.sessionState.conf.setConfString("spark.delta.sharing.client.class",
574574
classOf[TestDeltaSharingClient].getName)
575575
spark.sessionState.conf.setConfString("spark.delta.sharing.profile.provider.class",
576576
"io.delta.sharing.client.DeltaSharingFileProfileProvider")
577577
TestDeltaSharingClient.clear
578578

579-
// Explicitly create share config file to avoid flaky test
580-
val testProfileFile = Files.createTempFile("delta-test-force-create", ".share").toFile
581-
FileUtils.writeStringToFile(testProfileFile, profileFileContent, UTF_8)
582579
val tablePath = testProfileFile.getCanonicalPath + "#share1.default.table1"
583580
spark.read
584581
.format("deltaSharing")

0 commit comments

Comments
 (0)
Please sign in to comment.