Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git issue 4578 taskid save for variables #4745

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
add task_id for ACT_HI_VARINST table for task variables
  • Loading branch information
jyotisahu9 committed Sep 24, 2024
commit aa4d41164a11cbaa289d4496509e9d1ba5cf784b
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,6 @@ public void testQueryDeleteVariableHistoryOperationOnTaskOfRunningInstance() {
historyService.deleteHistoricVariableInstance(variableInstanceId);

// then
//verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY);
verifyHistoricVariableOperationAssertsWithTaskId(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY);
verifySingleVariableOperationPropertyChange("name", "testVariable", UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY);
}
Expand All @@ -1428,7 +1427,6 @@ public void testQueryDeleteVariableHistoryOperationOnTaskOfHistoricInstance() {
historyService.deleteHistoricVariableInstance(variableInstanceId);

// then
//verifyHistoricVariableOperationAsserts(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY);
verifyHistoricVariableOperationAssertsWithTaskId(1, UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY);
verifySingleVariableOperationPropertyChange("name", "testVariable", UserOperationLogEntry.OPERATION_TYPE_DELETE_HISTORY);
}
Expand Down