Skip to content

Commit

Permalink
[bugfix](e2e) fix submit job case error (apache#6059)
Browse files Browse the repository at this point in the history
  • Loading branch information
liugddx authored Dec 22, 2023
1 parent 085e0e5 commit 04234ac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,9 @@ public void testSubmitJob() {
+ RestConstant.FINISHED_JOBS_INFO)
.then()
.statusCode(200)
.body("[" + i.get() + "].jobName", equalTo("test测试"))
.body(
"[" + i.get() + "].jobName",
equalTo(i.get() == 0 ? paramJobName : jobName))
.body("[" + i.get() + "].errorMsg", equalTo(null))
.body(
"[" + i.get() + "].jobDag.jobId",
Expand Down

0 comments on commit 04234ac

Please sign in to comment.