Skip to content

Commit

Permalink
test: dont use regressiontest annotation for junit 4
Browse files Browse the repository at this point in the history
This annotation only works for junit 5 test cases
  • Loading branch information
korthout committed Jul 3, 2023
1 parent cd1b834 commit afafed9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import io.camunda.zeebe.protocol.record.intent.DeploymentIntent;
import io.camunda.zeebe.protocol.record.intent.ProcessIntent;
import io.camunda.zeebe.protocol.record.value.DeploymentRecordValue;
import io.camunda.zeebe.test.util.junit.RegressionTest;
import io.camunda.zeebe.test.util.record.RecordingExporter;
import io.camunda.zeebe.test.util.record.RecordingExporterTestWatcher;
import io.camunda.zeebe.util.ByteValue;
Expand Down Expand Up @@ -296,7 +295,7 @@ public void shouldDoAtomicDeployments() {
tuple(DeploymentDistributionIntent.DISTRIBUTING, RecordType.EVENT));
}

@RegressionTest("https://github.com/camunda/zeebe/issues/13254")
@Test // Regression of https://github.com/camunda/zeebe/issues/13254
public void shouldNotBeAbleToCreateInstanceWhenDeploymentIsRejected() {
// given
final BpmnModelInstance invalidProcess =
Expand Down

0 comments on commit afafed9

Please sign in to comment.