Skip to content

Commit

Permalink
two nit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
linzhou-db committed Oct 9, 2024
1 parent f88f9aa commit 70f99e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -708,10 +708,8 @@ class DeltaSharingServiceSuite extends FunSuite with BeforeAndAfterAll {
asyncQuery = "true"
)

var lines = response.split("\n")
val lines = response.split("\n")
assert(lines.length == 4)

print(s"response: $response")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class TestDeltaSharingClient(
readerFeatures: String = "",
queryTablePaginationEnabled: Boolean = false,
maxFilesPerReq: Int = 10000,
includeEndStreamAction: Boolean = false,
endStreamActionEnabled: Boolean = true,
enableAsyncQuery: Boolean = false,
asyncQueryPollIntervalMillis: Long = 1000L,
asyncQueryMaxDuration: Long = Long.MaxValue,
Expand Down

0 comments on commit 70f99e2

Please sign in to comment.