Added BundleContext reference to generated factories for config subsystem
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / impl / util / InterfacesHelperTest.java
index 6736ba1111d6fb065eea46ad32e1b9deab58fe65..9a5452aa6caa237cc702d1b81b8b388d4520cfd0 100644 (file)
@@ -15,6 +15,7 @@ import javax.management.MXBean;
 
 import org.junit.Test;
 import org.opendaylight.controller.config.spi.Module;
+import org.opendaylight.yangtools.concepts.Identifiable;
 
 import com.google.common.collect.Sets;
 
@@ -48,7 +49,7 @@ public class InterfacesHelperTest {
     @Test
     public void testGetAllInterfaces() {
         Set<Class<?>> expected = Sets.<Class<?>> newHashSet(SuperA.class, SuperBMXBean.class, SuperC.class,
-                SubA.class, Module.class, org.opendaylight.protocol.concepts.NamedObject.class);
+                SubA.class, Identifiable.class, Module.class);
         assertEquals(expected,
                 InterfacesHelper.getAllInterfaces(SubClass.class));
     }