Skip to content

Commit a0ecc2e

Browse files
committed
move DestroyForSameCreationalContext2Test to the "full" part of the TCK
1 parent b36fcea commit a0ecc2e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

impl/src/main/java/org/jboss/cdi/tck/tests/context/DestroyForSameCreationalContext2Test.java impl/src/main/java/org/jboss/cdi/tck/tests/full/context/DestroyForSameCreationalContext2Test.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package org.jboss.cdi.tck.tests.context;
17+
package org.jboss.cdi.tck.tests.full.context;
1818

19+
import static org.jboss.cdi.tck.TestGroups.CDI_FULL;
1920
import static org.jboss.cdi.tck.cdi.Sections.CONTEXT;
2021

2122
import jakarta.enterprise.context.RequestScoped;
@@ -45,7 +46,7 @@ public static WebArchive createTestArchive() {
4546
return new WebArchiveBuilder().withTestClassPackage(DestroyForSameCreationalContext2Test.class).build();
4647
}
4748

48-
@Test
49+
@Test(groups = CDI_FULL)
4950
@SpecAssertion(section = CONTEXT, id = "r")
5051
public void testDestroyForSameCreationalContextOnly() {
5152
// Check that the mock cc is called (via cc.release()) when we request a context destroyed

impl/src/main/java/org/jboss/cdi/tck/tests/context/DummyContextual.java impl/src/main/java/org/jboss/cdi/tck/tests/full/context/DummyContextual.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* See the License for the specific language governing permissions and
1515
* limitations under the License.
1616
*/
17-
package org.jboss.cdi.tck.tests.context;
17+
package org.jboss.cdi.tck.tests.full.context;
1818

1919
import jakarta.enterprise.context.spi.Contextual;
2020
import jakarta.enterprise.context.spi.CreationalContext;

0 commit comments

Comments
 (0)