Bump MRI upstreams
[netconf.git] / netconf / netconf-topology-singleton / src / test / java / org / opendaylight / netconf / topology / singleton / impl / AbstractBaseSchemasTest.java
index df1cf00744aee175f857f3d3eb5fdec7301c63cf..cb897dba08d1711487929bfba1e8d826c1f0487c 100644 (file)
@@ -11,15 +11,15 @@ import org.junit.AfterClass;
 import org.junit.BeforeClass;
 import org.opendaylight.netconf.sal.connect.netconf.schema.mapping.BaseNetconfSchemas;
 import org.opendaylight.netconf.sal.connect.netconf.schema.mapping.DefaultBaseNetconfSchemas;
-import org.opendaylight.yangtools.yang.model.parser.api.YangParserException;
-import org.opendaylight.yangtools.yang.parser.impl.YangParserFactoryImpl;
+import org.opendaylight.yangtools.yang.parser.api.YangParserException;
+import org.opendaylight.yangtools.yang.parser.impl.DefaultYangParserFactory;
 
 public abstract class AbstractBaseSchemasTest {
     protected static BaseNetconfSchemas BASE_SCHEMAS;
 
     @BeforeClass
     public static void initBaseSchemas() throws YangParserException {
-        BASE_SCHEMAS = new DefaultBaseNetconfSchemas(new YangParserFactoryImpl());
+        BASE_SCHEMAS = new DefaultBaseNetconfSchemas(new DefaultYangParserFactory());
     }
 
     @AfterClass