File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
itest/src/it/itest-standalone/src/test/java/org/ops4j/pax/cdi/test Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 21
21
import static org .hamcrest .CoreMatchers .notNullValue ;
22
22
import static org .hamcrest .CoreMatchers .nullValue ;
23
23
import static org .junit .Assert .assertNotNull ;
24
- import static org .junit .Assert .assertSame ;
25
24
import static org .junit .Assert .assertThat ;
26
25
import static org .ops4j .pax .cdi .test .support .TestConfiguration .cdiProviderBundles ;
27
26
import static org .ops4j .pax .cdi .test .support .TestConfiguration .paxCdiProviderAdapter ;
@@ -108,7 +107,7 @@ public void checkContainerInstance() {
108
107
public void checkBeanManager () {
109
108
assertNotNull (container .getBeanManager ());
110
109
assertNotNull (beanManager );
111
- assertSame (beanManager , container .getBeanManager ());
110
+ assertThat (beanManager , is ( container .getBeanManager () ));
112
111
}
113
112
114
113
@ Test
You can’t perform that action at this time.
0 commit comments