Skip to content

Commit

Permalink
Remove QuarkusTestExtension.class from @QuarkusIntegrationTest
Browse files Browse the repository at this point in the history
Without this fix, if an integration test fails it results in the application being restarted

Relates to: #23612
  • Loading branch information
Sgitario committed Dec 9, 2022
1 parent 841d750 commit 9e19835
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* {@link @QuarkusTest} so the test class structure must take this into account.
*/
@Target(ElementType.TYPE)
@ExtendWith({ DisabledOnIntegrationTestCondition.class, QuarkusTestExtension.class, QuarkusIntegrationTestExtension.class })
@ExtendWith({ DisabledOnIntegrationTestCondition.class, QuarkusIntegrationTestExtension.class })
@Retention(RetentionPolicy.RUNTIME)
public @interface QuarkusIntegrationTest {

Expand Down

0 comments on commit 9e19835

Please sign in to comment.