Skip to content

Commit

Permalink
[test](p2) print error message when assert fails
Browse files Browse the repository at this point in the history
  • Loading branch information
kaijchen committed Sep 11, 2024
1 parent d77d74a commit 2ce14b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ suite("test_broker_load_p2", "p2") {
}
if (result[0][2].equals("CANCELLED")) {
assertTrue(result[0][6].contains(task_info[i]))
assertTrue(result[0][7].contains(error_msg[i]))
assertTrue(result[0][7].contains(error_msg[i]), "expected: " + error_msg[i] + ", actual: " + result[0][7] + ", label: $label")
break;
}
Thread.sleep(1000)
Expand Down

0 comments on commit 2ce14b6

Please sign in to comment.