Skip to content

Commit

Permalink
fix(engine): Add missing HistoryLevel annotation to test
Browse files Browse the repository at this point in the history
Related to camunda#4206
  • Loading branch information
mboskamp committed Sep 23, 2024
1 parent 0188c9e commit ff4229c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.camunda.bpm.engine.ExternalTaskService;
import org.camunda.bpm.engine.HistoryService;
import org.camunda.bpm.engine.ManagementService;
import org.camunda.bpm.engine.ProcessEngineConfiguration;
import org.camunda.bpm.engine.RuntimeService;
import org.camunda.bpm.engine.batch.Batch;
import org.camunda.bpm.engine.externaltask.ExternalTask;
Expand All @@ -39,6 +40,7 @@
import org.camunda.bpm.engine.runtime.ProcessInstance;
import org.camunda.bpm.engine.test.Deployment;
import org.camunda.bpm.engine.test.ProcessEngineRule;
import org.camunda.bpm.engine.test.RequiredHistoryLevel;
import org.camunda.bpm.engine.test.api.history.removaltime.batch.helper.BatchSetRemovalTimeRule;
import org.camunda.bpm.engine.test.util.BatchRule;
import org.camunda.bpm.engine.test.util.ProcessEngineTestRule;
Expand All @@ -51,6 +53,7 @@
import org.junit.Test;
import org.junit.rules.RuleChain;

@RequiredHistoryLevel(ProcessEngineConfiguration.HISTORY_FULL)
public class JobEntityAndJobLogBatchIdTest {

protected ProcessEngineRule engineRule = new ProvidedProcessEngineRule();
Expand Down

0 comments on commit ff4229c

Please sign in to comment.