You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix InvocationContextTest and InterceptorBindingInheritanceTest
This is to cater for implementations that implement interception by proxying,
in which case the contextual instance of a bean is an interception proxy,
while `InvocationContext.getTarget()` returns the proxied object (an "actual"
instance of the bean).
Copy file name to clipboardexpand all lines: impl/src/main/java/org/jboss/cdi/tck/interceptors/tests/contract/invocationContext/InvocationContextTest.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ public void testGetTargetMethod() {
Copy file name to clipboardexpand all lines: impl/src/main/java/org/jboss/cdi/tck/tests/interceptors/definition/inheritance/InterceptorBindingInheritanceTest.java
+14-8
Original file line number
Diff line number
Diff line change
@@ -52,48 +52,54 @@ public static WebArchive createTestArchive() {
52
52
@Test(dataProvider = ARQUILLIAN_DATA_PROVIDER)
53
53
@SpecAssertions({ @SpecAssertion(section = TYPE_LEVEL_INHERITANCE, id = "ad"), @SpecAssertion(section = TYPE_LEVEL_INHERITANCE, id = "ada") })
0 commit comments