YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / qnameDuplicity / augment / two-cases.yang
diff --git a/yang/yang-parser-impl/src/test/resources/bugs/qnameDuplicity/augment/two-cases.yang b/yang/yang-parser-impl/src/test/resources/bugs/qnameDuplicity/augment/two-cases.yang
deleted file mode 100644 (file)
index e18cefa..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-module two-cases {
-
-    namespace "urn:test:two:cases";
-    prefix "two";
-
-    organization "OPEN DAYLIGHT";
-    contact "http://www.opendaylight.org/";
-
-    revision 2013-07-09 {
-
-    }
-
-    container cont {
-        choice choice {
-            default second;
-            case first {
-                leaf leaf-case1 {
-                    type int32;
-                }
-            }
-        }
-    }
-
-    augment "/cont/choice/" {
-        case forth {
-            leaf leaf-case1 {
-                type string;
-            }
-        }
-    }
-}
\ No newline at end of file