BUG-4688: eliminate SimpleDateFormatUtil.DEFAULT_DATE_REV
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug5396Test.java
index 816aa58bb859713c7be1160aafc8ebaee24e2b85..e0d0f4cabdefc35117f07d6f84ec86be3e90a7ed 100644 (file)
@@ -32,8 +32,8 @@ public class Bug5396Test {
         SchemaContext context = StmtTestUtils.parseYangSources("/bugs/bug5396");
         assertNotNull(context);
 
-        QName root = QName.create("foo", "1970-01-01", "root");
-        QName myLeaf2 = QName.create("foo", "1970-01-01", "my-leaf2");
+        QName root = QName.create("foo", "root");
+        QName myLeaf2 = QName.create("foo", "my-leaf2");
 
         SchemaPath schemaPath = SchemaPath.create(true, root, myLeaf2);
         SchemaNode findDataSchemaNode = SchemaContextUtil.findDataSchemaNode(context, schemaPath);