Skip to content

Commit

Permalink
ut
Browse files Browse the repository at this point in the history
  • Loading branch information
turboFei committed Dec 2, 2024
1 parent 1680175 commit d2a490d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,11 @@ abstract class BatchesResourceSuiteBase extends KyuubiFunSuite
.queryParam("from", "0")
.queryParam("size", "1")
.queryParam("desc", "true")
.queryParam("createTime", "1")
.request(MediaType.APPLICATION_JSON_TYPE)
.header(AUTHORIZATION_HEADER, basicAuthorizationHeader("anonymous"))
.get()
val lastBatch = response9.readEntity(classOf[GetBatchesResponse]).getBatches.get(0)
var lastBatch = response9.readEntity(classOf[GetBatchesResponse]).getBatches.get(0)
assert(firstBatch.getCreateTime < lastBatch.getCreateTime)
}

Expand Down

0 comments on commit d2a490d

Please sign in to comment.