From 91c009efd9c36472ad206b73b1c442c3895f15cd Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Tue, 3 Sep 2024 08:58:50 +0300 Subject: [PATCH] Update test-framework/common/src/main/java/io/quarkus/test/common/WithTestResource.java MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Stéphane Épardaud --- .../src/main/java/io/quarkus/test/common/WithTestResource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-framework/common/src/main/java/io/quarkus/test/common/WithTestResource.java b/test-framework/common/src/main/java/io/quarkus/test/common/WithTestResource.java index 8c6603a750e2a2..b6dd17854f9a83 100644 --- a/test-framework/common/src/main/java/io/quarkus/test/common/WithTestResource.java +++ b/test-framework/common/src/main/java/io/quarkus/test/common/WithTestResource.java @@ -14,7 +14,7 @@ * Used to define a test resource, which can affect various aspects of the application lifecycle. *

* As of Quarkus 3.16, the default behavior of the annotation (meaning that {@code scope} has not been set) - * is that test classes annotated with same {@code WithTestResource} will not force a restart + * is that test classes annotated with the same {@code WithTestResource} will not force a restart * of Quarkus. *

* The equivalent behavior to {@code QuarkusTestResource(restrictToAnnotatedClass = false)} is to use