Skip to content

Commit

Permalink
fix review remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
benstroobants-vaph committed Sep 19, 2024
1 parent 6e353af commit dfc1af3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -728,13 +728,17 @@ public void testTaskQueryCandidateGroupExpressionIncludeAssignedTasks() {

@Test
public void testTaskQueryCandidateGroupLikeIncludeAssignedTasks() {
// given
TaskQueryImpl query = new TaskQueryImpl();
query.taskCandidateGroupLike(testGroup.getId());
query.includeAssignedTasks();

saveQuery(query);

// when
query = filter.getQuery();

// then
assertEquals(testGroup.getId(), query.getCandidateGroupLike());
assertTrue(query.isIncludeAssignedTasks());
}
Expand Down

0 comments on commit dfc1af3

Please sign in to comment.