Skip to content

Commit

Permalink
update routine load cases
Browse files Browse the repository at this point in the history
  • Loading branch information
XuJianxu committed Nov 4, 2024
1 parent c4dc3e5 commit 9d8d38f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ suite("test_routine_load","p0") {
"""
}catch (Exception e) {
log.info("exception: ${e.toString()}".toString())
assertEquals(e.toString().contains("desired_concurrent_number must be greater than 0"), true)
assertEquals(e.toString().contains("desired_concurrent_number should > 0"), true)
}
sql "sync"
i++
Expand Down Expand Up @@ -435,7 +435,7 @@ suite("test_routine_load","p0") {
"""
}catch (Exception e) {
log.info("exception: ${e.toString()}".toString())
assertEquals(e.toString().contains("desired_concurrent_number must be greater than 0"), true)
assertEquals(e.toString().contains("desired_concurrent_number should > 0"), true)
}
sql "sync"
i++
Expand Down

0 comments on commit 9d8d38f

Please sign in to comment.