Skip to content

Commit

Permalink
Improve reason messages in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge committed May 21, 2024
1 parent 14dbdc8 commit 290b4c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ public void shouldCheckForUnreachableTasksWithException() throws Exception {
public void shouldHasCompleteTasks() throws Exception {
TemplateInterface template = templateService.findById(1);
boolean condition = templateService.hasCompleteTasks(template.getTasks());
assertTrue("Process Interface doesn't have complete tasks!", condition);
assertTrue("Process doesn't have complete tasks!", condition);

template = templateService.findById(3);
condition = templateService.hasCompleteTasks(template.getTasks());
assertFalse("Process Interface has complete tasks!", condition);
assertFalse("Process has complete tasks!", condition);
}
}

0 comments on commit 290b4c5

Please sign in to comment.