Skip to content

Commit

Permalink
remove extra line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
venetrius committed Sep 18, 2024
1 parent bbf0cb7 commit c0f2170
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2327,7 +2327,7 @@ public void testQueryByIncidentIdIn() {
.when()
.get(HISTORIC_PROCESS_INSTANCE_RESOURCE_URL);

verify(mockedQuery).incidentIdIn("1", "2"); // TODO
verify(mockedQuery).incidentIdIn("1", "2");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ public class HistoricProcessInstanceQueryImpl extends AbstractVariableQueryImpl<
protected String state;
protected String[] incidentIds;


protected String caseInstanceId;

protected List<HistoricProcessInstanceQueryImpl> queries = new ArrayList<>(Collections.singletonList(this));
Expand Down Expand Up @@ -742,7 +741,6 @@ public String[] getIncidentIds() {
return incidentIds;
}


@Override
public HistoricProcessInstanceQuery executedActivityAfter(Date date) {
this.executedActivityAfter = date;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1999,7 +1999,6 @@ public void shouldQueryByVariableValue_13() {
runtimeService.startProcessInstanceByKey("failingProcess");
List<String> queriedProcessInstances = Arrays.asList(processInstance.getId(), processInstance2.getId());


testHelper.executeAvailableJobs();
Incident incident = runtimeService.createIncidentQuery().processInstanceId(queriedProcessInstances.get(0)).singleResult();
Incident incident2 = runtimeService.createIncidentQuery().processInstanceId(queriedProcessInstances.get(1)).singleResult();
Expand Down

0 comments on commit c0f2170

Please sign in to comment.