X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=netconf%2Fnetconf-topology-singleton%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fsingleton%2Fimpl%2FNetconfTopologyManagerTest.java;fp=netconf%2Fnetconf-topology-singleton%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Ftopology%2Fsingleton%2Fimpl%2FNetconfTopologyManagerTest.java;h=5c6812396514d19684eadd9066299f20dba2325a;hb=b4e31a7c0cf7ecfdc4160a379e26ded9fedf9ecb;hp=c35842fcdb3d244d7848dc31a150b447237fb6f9;hpb=faff6015823e0cfdeb16840ff69c9b22ea1ea1ef;p=netconf.git diff --git a/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/NetconfTopologyManagerTest.java b/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/NetconfTopologyManagerTest.java index c35842fcdb..5c68123965 100644 --- a/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/NetconfTopologyManagerTest.java +++ b/netconf/netconf-topology-singleton/src/test/java/org/opendaylight/netconf/topology/singleton/impl/NetconfTopologyManagerTest.java @@ -83,7 +83,7 @@ import org.opendaylight.yangtools.yang.binding.YangModuleInfo; import org.opendaylight.yangtools.yang.common.Uint16; import org.opendaylight.yangtools.yang.parser.impl.YangParserFactoryImpl; -public class NetconfTopologyManagerTest { +public class NetconfTopologyManagerTest extends AbstractBaseSchemasTest { private static final Uint16 ACTOR_RESPONSE_WAIT_TIME = Uint16.valueOf(10); private static final String TOPOLOGY_ID = "topologyID"; @@ -129,8 +129,8 @@ public class NetconfTopologyManagerTest { final DeviceActionFactory deviceActionFactory = mock(DeviceActionFactory.class); final Config config = new ConfigBuilder().setWriteTransactionIdleTimeout(Uint16.ZERO).build(); - netconfTopologyManager = new NetconfTopologyManager(dataBroker, rpcProviderRegistry, actionProviderRegistry, - clusterSingletonServiceProvider, keepaliveExecutor, processingThreadPool, + netconfTopologyManager = new NetconfTopologyManager(BASE_SCHEMAS, dataBroker, rpcProviderRegistry, + actionProviderRegistry, clusterSingletonServiceProvider, keepaliveExecutor, processingThreadPool, actorSystemProvider, eventExecutor, clientDispatcher, TOPOLOGY_ID, config, mountPointService, encryptionService, deviceActionFactory, new DefaultSchemaResourceManager(new YangParserFactoryImpl())) {